Files
CavesOfSwift/Sources/Test/Objects/Actor.swift

10 lines
147 B
Swift
Raw Normal View History

2024-05-05 17:01:56 +10:00
import JolkEngine
protocol Actor
{
func update(deltaTime: Float, world: Collision)
var position: Vec3f { get }
var transform: Mat4f { get }
}