mirror of
https://github.com/Ukendio/jecs.git
synced 2025-06-20 16:29:18 +00:00
* Fix query types * Add systems to demo * Remove comments of inlined versions * Fix style * Replication * Test :iter
6 lines
308 B
Text
6 lines
308 B
Text
local ReplicatedStorage = game:GetService("ReplicatedStorage")
|
|
local std = require(ReplicatedStorage.std)
|
|
|
|
print(script.Parent:WaitForChild("systems"):GetChildren())
|
|
local loop = std.Scheduler(unpack(script.Parent:WaitForChild("systems"):GetChildren()))
|
|
game:GetService("RunService").Heartbeat:Connect(loop)
|