fix: Bugs + temp push for bugfixing
This commit is contained in:
parent
88ca58df9b
commit
d34edf8d70
21 changed files with 2317 additions and 73 deletions
|
@ -1,12 +1,19 @@
|
|||
--!strict
|
||||
--!optimize 2
|
||||
local jecs = require("./jecs")
|
||||
|
||||
local WORLD = require("./world")
|
||||
local collect = require("./collect")
|
||||
export type collect_signal_like<T...> = collect.signal_like<any, T...>
|
||||
export type collect_verbose_signal_like<D, T...> = collect.signal_like<D, T...>
|
||||
local command_buffer = require("./command_buffer")
|
||||
export type command_buffer = command_buffer.command_buffer
|
||||
local handle = require("./handle")
|
||||
local jecs = require("@pkg/jecs")
|
||||
export type handle = handle.handle
|
||||
local ref = require("./ref")
|
||||
local replicator = require("./replicator")
|
||||
export type replicator = replicator.replicator
|
||||
export type changes = replicator.changes
|
||||
|
||||
--- Set the world for all utilities.
|
||||
--- Should be called once per context before any utility is used.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue