mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-29 14:17:57 +03:00
Reversing Actor Final Part
This commit is contained in:
parent
cb239c3c7f
commit
6528ba4dac
40 changed files with 3983 additions and 779 deletions
|
@ -171,11 +171,25 @@ public:
|
|||
bool TrySetScript( const_str label );
|
||||
bool TrySetScript( const char *label );
|
||||
|
||||
bool IsSet(void);
|
||||
bool IsFile(const_str filename);
|
||||
|
||||
void GetScriptValue(ScriptVariable *var);
|
||||
|
||||
bool IsSet( void );
|
||||
|
||||
void Archive( Archiver& arc );
|
||||
|
||||
friend bool operator==(const ScriptThreadLabel& a, const ScriptThreadLabel& b);
|
||||
};
|
||||
|
||||
|
||||
inline bool operator==
|
||||
(
|
||||
const ScriptThreadLabel& a,
|
||||
const ScriptThreadLabel& b
|
||||
)
|
||||
{
|
||||
return a.m_Label == b.m_Label && a.m_Script == b.m_Script;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue