Warp/src/init.luau

18 lines
357 B
Lua
Raw Normal View History

2024-01-05 12:14:38 +00:00
-- Warp Library (@Eternity_Devs)
2024-09-27 04:10:12 +00:00
-- version 1.0.13
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
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
}