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

type GameObject interface {
	Create(SceneManager)
	Destroy()
	Update()
	Draw()
}