mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-24 17:10:03 +00:00
Fix invalid key
This commit is contained in:
parent
08e46fb5f9
commit
e234bd82ee
2 changed files with 5 additions and 5 deletions
2
.luaurc
2
.luaurc
|
@ -4,5 +4,5 @@
|
||||||
"testkit": "testkit",
|
"testkit": "testkit",
|
||||||
"mirror": "mirror",
|
"mirror": "mirror",
|
||||||
},
|
},
|
||||||
languageMode: "strict"
|
"languageMode": "strict"
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,7 +40,7 @@ export type Scheduler = {
|
||||||
|
|
||||||
phases: {
|
phases: {
|
||||||
RenderStepped: Entity,
|
RenderStepped: Entity,
|
||||||
Heartbeat: Entity
|
Heartbeat: Entity,
|
||||||
},
|
},
|
||||||
|
|
||||||
phase: (after: Entity) -> Entity
|
phase: (after: Entity) -> Entity
|
||||||
|
@ -50,9 +50,9 @@ local scheduler_new: (w: World, components: { [string]: Entity }) -> Scheduler
|
||||||
|
|
||||||
|
|
||||||
do
|
do
|
||||||
local world
|
local world: World
|
||||||
local Disabled
|
local Disabled: Entity
|
||||||
local System
|
local System: Entity<{}>
|
||||||
local DependsOn
|
local DependsOn
|
||||||
local Phase
|
local Phase
|
||||||
local Event
|
local Event
|
||||||
|
|
Loading…
Reference in a new issue