MCPcopy Create free account
hub / github.com/RSDKModding/RSDKv4-Decompilation / ScriptVariableInfo

Class ScriptVariableInfo

RSDKv4/Script.cpp:18–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16enum ScriptVarAccessModifier { ACCESS_NONE, ACCESS_PUBLIC, ACCESS_PRIVATE };
17
18struct ScriptVariableInfo {
19 ScriptVariableInfo()
20 {
21 type = VAR_ALIAS;
22 access = ACCESS_NONE;
23 StrCopy(name, "");
24 StrCopy(value, "");
25 }
26
27 ScriptVariableInfo(byte type, byte access, const char *name, const char *value)
28 {
29 this->type = type;
30 this->access = access;
31 StrCopy(this->name, name);
32 StrCopy(this->value, value);
33 }
34
35 byte type;
36 byte access;
37 char name[0x20];
38 char value[0x20];
39};
40
41struct FunctionInfo {
42 FunctionInfo()

Callers 1

Script.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected