mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
Made ScriptVariable classes part of LightClass
This commit is contained in:
parent
9f6ef14ea1
commit
f7bfa47f2e
1 changed files with 5 additions and 5 deletions
|
@ -71,7 +71,7 @@ class ScriptArrayHolder;
|
|||
class ScriptConstArrayHolder;
|
||||
class ScriptPointer;
|
||||
|
||||
class ScriptVariable
|
||||
class ScriptVariable : public LightClass
|
||||
{
|
||||
public:
|
||||
#ifdef GAME_DLL
|
||||
|
@ -79,7 +79,7 @@ public:
|
|||
#endif
|
||||
unsigned char type; // variable type
|
||||
|
||||
union anon393 {
|
||||
union {
|
||||
public:
|
||||
char charValue;
|
||||
float floatValue;
|
||||
|
@ -237,7 +237,7 @@ public:
|
|||
ScriptVariable operator--(int);
|
||||
};
|
||||
|
||||
class ScriptArrayHolder
|
||||
class ScriptArrayHolder : public LightClass
|
||||
{
|
||||
public:
|
||||
con_map<ScriptVariable, ScriptVariable> arrayValue;
|
||||
|
@ -250,7 +250,7 @@ public:
|
|||
static void Archive(Archiver& arc, ScriptArrayHolder *& arrayValue);
|
||||
};
|
||||
|
||||
class ScriptConstArrayHolder
|
||||
class ScriptConstArrayHolder : public LightClass
|
||||
{
|
||||
public:
|
||||
ScriptVariable *constArrayValue;
|
||||
|
@ -267,7 +267,7 @@ public:
|
|||
~ScriptConstArrayHolder();
|
||||
};
|
||||
|
||||
class ScriptPointer
|
||||
class ScriptPointer : public LightClass
|
||||
{
|
||||
public:
|
||||
Container<ScriptVariable *> list;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue