Direction.go 185 B

123456789101112
  1. package giu
  2. // Direction represents a ArrowButton direction.
  3. type Direction uint8
  4. // directions.
  5. const (
  6. DirectionLeft Direction = iota
  7. DirectionRight
  8. DirectionUp
  9. DirectionDown
  10. )