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",
|
||||
"mirror": "mirror",
|
||||
},
|
||||
languageMode: "strict"
|
||||
"languageMode": "strict"
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue