types.go 100 B

12345678910111213
  1. package game
  2. const (
  3. up = iota
  4. Left
  5. right
  6. down
  7. upleft
  8. upright
  9. downleft
  10. downright
  11. action
  12. )