summaryrefslogtreecommitdiff
path: root/engine/CoreObjects/GameObject.go
blob: 9ff1b876f1048e448da34728724f5243f6d1c05d (plain)
1
2
3
4
5
6
7
8
9
10
package coreobjects

type GameObject interface {
	Init(SceneManager)
	Destroy()
	Update()
	Draw()
	GetColliders() []Collider
	GetYIndex() float32
}