Warp/src/init.luau

16 lines
331 B
Lua
Raw Normal View History

2024-01-05 12:14:38 +00:00
-- Warp Library (@Eternity_Devs)
2024-03-14 04:58:08 +00:00
-- version 1.0.8
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-01-05 12:14:38 +00:00
}