Reversing Actor Final Part

This commit is contained in:
mohabhassan 2018-09-05 16:55:10 +02:00
parent cb239c3c7f
commit 6528ba4dac
40 changed files with 3983 additions and 779 deletions

View file

@ -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