The Skung Cave commit

This commit is contained in:
2024-05-09 20:52:01 +10:00
parent 446c444728
commit 9461fe08cf
35 changed files with 11988 additions and 9097 deletions

View File

@ -0,0 +1,10 @@
import JolkEngine
protocol Scene
{
mutating func setup(render: inout Renderer)
mutating func loadContent(content: inout ContentManager) throws
mutating func update(deltaTime: Float)
func draw(render: inout Renderer, deltaTime: Float, aspectRatio aspect: Float)
}