-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.luau
33 lines (31 loc) · 1.35 KB
/
init.luau
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
--!strict
export type types = typeof(require(script.types))
--- ### Konbini.luau
---
--- a shelf of roblox-luau convenience modules \
--- [*view konbini on github*](https://github.com/00826/konbini)
return table.freeze{
Animation = require(script:WaitForChild("Animation"));
await = require(script:WaitForChild("await"));
Bullet = require(script:WaitForChild("Bullet"));
CFrame = require(script:WaitForChild("CFrame"));
Collisions = require(script:WaitForChild("Collisions"));
Color3 = require(script:WaitForChild("Color3"));
Couture = require(script:WaitForChild("Couture"));
Data = require(script:WaitForChild("Data"));
Encoder = require(script:WaitForChild("Encoder"));
Entity = require(script:WaitForChild("Entity"));
Hook = require(script:WaitForChild("Hook"));
Inputs = require(script:WaitForChild("Inputs"));
Instance = require(script:WaitForChild("Instance"));
Interface = require(script:WaitForChild("Interface"));
Math = require(script:WaitForChild("Math"));
Memory = require(script:WaitForChild("Memory"));
Network = require(script:WaitForChild("Network"));
Patronage = require(script:WaitForChild("Patronage"));
Stats = require(script:WaitForChild("Stats"));
Table = require(script:WaitForChild("Table"));
Time = require(script:WaitForChild("Time"));
Vector3 = require(script:WaitForChild("Vector3"));
Zone = require(script:WaitForChild("Zone"));
}