Ejemplo n.º 1
0
 internal static bool KeyboardMenuBack(InputFrame arg)
 {
     return(arg.IsKeyJustPressed(Keys.Back) || arg.IsKeyJustPressed(Keys.L));
 }
Ejemplo n.º 2
0
 internal static bool KeyboardMenuDown(InputFrame arg)
 {
     return(arg.IsKeyJustPressed(Keys.S));
 }
Ejemplo n.º 3
0
 internal static bool KeyboardMenuStart(InputFrame arg)
 {
     return(arg.IsKeyJustPressed(Keys.Enter));
 }
Ejemplo n.º 4
0
 internal static bool EndRound(InputFrame arg)
 {
     return(arg.IsKeyJustPressed(Keys.Delete));
 }
Ejemplo n.º 5
0
 internal static bool SpawnChicken(InputFrame arg)
 {
     return(arg.IsKeyJustPressed(Keys.F6));
 }
Ejemplo n.º 6
0
 internal static bool KeyboardMenuRight(InputFrame arg)
 {
     return(arg.IsKeyJustPressed(Keys.D));
 }
Ejemplo n.º 7
0
 internal static bool SpawnBoar(InputFrame arg)
 {
     return(arg.IsKeyJustPressed(Keys.F5));
 }
Ejemplo n.º 8
0
 internal static bool FullScreen(InputFrame arg)
 {
     return(arg.IsKeyJustPressed(Keys.F11));
 }