Fix invalid key

This commit is contained in:
Ukendio 2024-09-09 02:18:08 +02:00
parent 08e46fb5f9
commit e234bd82ee
2 changed files with 5 additions and 5 deletions

View file

@ -4,5 +4,5 @@
"testkit": "testkit",
"mirror": "mirror",
},
languageMode: "strict"
"languageMode": "strict"
}

View file

@ -40,7 +40,7 @@ export type Scheduler = {
phases: {
RenderStepped: Entity,
Heartbeat: Entity
Heartbeat: Entity,
},
phase: (after: Entity) -> Entity
@ -50,9 +50,9 @@ local scheduler_new: (w: World, components: { [string]: Entity }) -> Scheduler
do
local world
local Disabled
local System
local world: World
local Disabled: Entity
local System: Entity<{}>
local DependsOn
local Phase
local Event