Files
CavesOfSwift/Sources/Test/Objects/Actor.swift
2024-05-09 20:52:01 +10:00

10 lines
156 B
Swift

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