PadType.cs 134 B

1234567891011
  1. namespace Game
  2. {
  3. public enum PadType
  4. {
  5. Pink = 0,
  6. Yellow = 1,
  7. Red = 2,
  8. Blue = 3
  9. }
  10. }