snake/types.go

23 lines
210 B
Go
Raw Normal View History

2023-11-23 22:36:44 +01:00
package main
2023-11-23 23:59:54 +01:00
const (
Left = iota
Right
Up
Down
)
2023-11-23 22:36:44 +01:00
type Position struct {
x int
y int
}
type Apple Position
type Snake struct {
head Position
tail []Position
length int
direction int
}