I want to know if its possible to control my game with arrow keys. It is basic version of "2048" game as a console output. My idea:
if(arrowKeyRight is pressed)
{
moveNumbersToRight
}
The same for the other arrow keys.
Is it possible for my program to read the arrow keys as an output?