BlockGamePlayerAction.cs 422 B

1234567891011121314151617181920212223
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Arcade
  3. {
  4. [Serializable, NetSerializable]
  5. public enum BlockGamePlayerAction
  6. {
  7. NewGame,
  8. StartLeft,
  9. EndLeft,
  10. StartRight,
  11. EndRight,
  12. Rotate,
  13. CounterRotate,
  14. SoftdropStart,
  15. SoftdropEnd,
  16. Harddrop,
  17. Pause,
  18. Unpause,
  19. Hold,
  20. ShowHighscores
  21. }
  22. }