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