mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-24 17:10:03 +00:00
* Fix query types * Add systems to demo * Remove comments of inlined versions * Fix style * Replication * Test :iter
18 lines
339 B
Text
18 lines
339 B
Text
option ClientOutput = "../net/client.luau"
|
|
option ServerOutput = "../net/server.luau"
|
|
|
|
event UpdateTransform {
|
|
From: Server,
|
|
Type: Unreliable,
|
|
Call: SingleSync,
|
|
Poll: true,
|
|
Data: (f64, CFrame)
|
|
}
|
|
|
|
event SpawnMob {
|
|
From: Server,
|
|
Type: Reliable,
|
|
Call: SingleSync,
|
|
Poll: true,
|
|
Data: (f64, CFrame, u8)
|
|
}
|