mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-25 01:20:04 +00:00
20 lines
533 B
Text
20 lines
533 B
Text
|
local jecs = require(game:GetService("ReplicatedStorage").ecs)
|
||
|
local world = require(script.world)
|
||
|
|
||
|
local std = {
|
||
|
ChangeTracker = require(script.changetracker),
|
||
|
Scheduler = require(script.scheduler),
|
||
|
bt = require(script.bt),
|
||
|
collect = require(script.collect),
|
||
|
components = require(script.components),
|
||
|
ctx = require(script.ctx),
|
||
|
handle = require(script.handle),
|
||
|
interval = require(script.interval),
|
||
|
ref = require(script.ref),
|
||
|
world = world,
|
||
|
pair = jecs.pair,
|
||
|
__ = jecs.w,
|
||
|
}
|
||
|
|
||
|
return std
|