10 lines
156 B
Swift
10 lines
156 B
Swift
import JolkEngine
|
|
|
|
protocol Actor
|
|
{
|
|
mutating func update(deltaTime: Float, world: Collision)
|
|
|
|
var position: Vec3f { get }
|
|
var transform: Mat4f { get }
|
|
}
|