Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
BtVariables.c
Go to the documentation of this file.
1
5sealed class BtVariableObject: BtVariable
6{
7 Managed m_Value;
8}
9
10sealed class BtVariableEntity: BtVariable
11{
13}
14
15sealed class BtVariableString: BtVariable
16{
17 string m_Value;
18}
19
20sealed class BtVariableResourceName: BtVariable
21{
23}
24
25sealed class BtVariableScalar: BtVariable
26{
27 float m_Value;
28}
29
30sealed class BtVariableInteger: BtVariable
31{
32 int m_Value;
33}
34
35sealed class BtVariableBool: BtVariable
36{
37 bool m_Value;
38}
39
40sealed class BtVariableVector: BtVariable
41{
43}
44
45sealed class BtVariableTypename: BtVariable
46{
47 typename m_Value;
48}
49
string m_Value
Definition attributes.c:22