Warp/src/init.luau

20 lines
394 B
Lua
Raw Normal View History

2024-01-05 12:14:38 +00:00
-- Warp Library (@Eternity_Devs)
2024-12-01 14:10:56 +00:00
-- version 1.0.14
2024-01-05 12:14:38 +00:00
--!strict
--!native
2024-03-14 04:58:08 +00:00
--!optimize 2
2024-01-05 12:14:38 +00:00
local Index = require(script.Index)
return {
Server = Index.Server,
Client = Index.Client,
2024-01-30 06:36:08 +00:00
fromServerArray = Index.fromServerArray,
fromClientArray = Index.fromClientArray,
2024-01-31 06:33:19 +00:00
2024-12-01 14:10:56 +00:00
OnSpamSignal = Index.OnSpamSignal,
2024-01-31 06:33:19 +00:00
Signal = Index.Signal,
fromSignalArray = Index.fromSignalArray,
2024-03-16 16:49:23 +00:00
buffer = Index.buffer,
2024-01-05 12:14:38 +00:00
}