VladimirPirozhenko 6999e84b65 Added pause and pause view, added restriction of input while in paused state
Upgraded Input system to fit demands of paused game (no movement inputs allowed!)
2022-08-12 05:38:17 +03:00

13 lines
163 B
C#

public enum ECommand
{
NONE = 0,
LEFT = 1,
RIGHT = 2,
UP = 3,
DOWN = 4,
OPEN_SCOREBOARD = 5,
SHOOT = 6,
OPEN_PAUSE_MENU = 7
}