-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNetDefinitions.blink
More file actions
91 lines (82 loc) · 1.52 KB
/
NetDefinitions.blink
File metadata and controls
91 lines (82 loc) · 1.52 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
option Casing = Camel
option ClientOutput = "src/Net/Client"
option ServerOutput = "src/Net/Server"
option RemoteScope = "REPLICATOR"
struct Replica {
Id: string,
Name: string,
Tags: string[]?,
Data: buffer?,
Parent: string?,
IsParent: boolean?,
WriteLib: Instance?,
}
event createReplica {
From: Server,
Type: Reliable,
Call: SingleSync,
Data: Replica,
}
event fireServerEvent {
From: Client,
Type: Reliable,
Call: SingleSync,
Data: struct {
Id: string,
Args: buffer?,
}
}
event updateReplica {
From: Server,
Type: Reliable,
Call: SingleSync,
Data: struct {
Id: string,
Change: struct {
Path: struct {
Key: string,
IsNumber: boolean,
}[],
Value: buffer?,
Action: string,
},
}
}
event fireClientEvent {
From: Server,
Type: Reliable,
Call: SingleSync,
Data: struct {
Id: string,
Args: buffer?,
}
}
event changeParent {
From: Server,
Type: Reliable,
Call: SingleSync,
Data: struct {
Id: string,
Parent: string?,
}
}
event destroyReplica {
From: Server,
Type: Reliable,
Call: SingleSync,
Data: string,
}
event replicaWrite {
From: Server,
Type: Reliable,
Call: SingleSync,
Data: struct {
Id: string,
Args: buffer?,
Method: string,
}
}
function getInitialReplicas {
Yield: Coroutine,
Return: Replica[]
}