mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 15:10:03 +00:00
21 lines
No EOL
375 B
Markdown
21 lines
No EOL
375 B
Markdown
# Warp <Badge type="tip" text="1.0" />
|
|
|
|
The public main of the Warp library.
|
|
|
|
## `.Server` <Badge type="tip" text="server side" />
|
|
|
|
Create a new event for Server-Side
|
|
|
|
```lua
|
|
-- Server
|
|
local Event1 = Warp.Server("Event1")
|
|
```
|
|
|
|
## `.Client` <Badge type="tip" text="client side" />
|
|
|
|
Create a new event for Client-Side.
|
|
|
|
```lua
|
|
-- Client
|
|
local Event1 = Warp.Client("Event1")
|
|
``` |