forked from tgstation/auxlua-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathss13.yml
More file actions
43 lines (43 loc) · 710 Bytes
/
ss13.yml
File metadata and controls
43 lines (43 loc) · 710 Bytes
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
34
35
36
37
38
39
40
41
42
43
---
base: luau
globals:
dm.world:
struct: Datum
dm.usr:
struct: Datum
dm.global_vars:
struct: Datum
dm.global_proc:
args:
- type: string
- type: ...
required: false
table.unpack:
args:
- type: table
- required: false
type: number
- required: false
type: number
must_use: true
sleep:
args: []
over_exec_usage:
- type: number
structs:
Datum:
get_var:
method: true
args:
- type: string
set_var:
method: true
args:
- type: string
- type: any
call_proc:
method: true
args:
- type: string
- type: ...
required: false