newyearkrendelki/actor.go

9 lines
100 B
Go
Raw Normal View History

package main
type Actor interface {
Update() bool
Draw()
TakeHit(Actor)
GetPosition() Vector
}