OrbType.cs 154 B

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