init dump

This commit is contained in:
2024-05-05 17:01:56 +10:00
commit 608cf45822
53 changed files with 19224 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import JolkEngine
protocol Actor
{
func update(deltaTime: Float, world: Collision)
var position: Vec3f { get }
var transform: Mat4f { get }
}