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