import JolkEngine
protocol Actor
{
mutating func update(deltaTime: Float, world: Collision)
var position: Vec3f { get }
var transform: Mat4f { get }
}