tab cleanup

This commit is contained in:
Chris Danford
2006-04-21 00:42:01 +00:00
parent 5c9bc7259b
commit 603a13e520
+5 -5
View File
@@ -11,16 +11,16 @@ class XNode;
class AutoActor
{
public:
AutoActor() { m_pActor = NULL; }
~AutoActor() { Unload(); }
AutoActor() { m_pActor = NULL; }
~AutoActor() { Unload(); }
AutoActor( const AutoActor &cpy );
AutoActor &operator =( const AutoActor &cpy );
operator const Actor* () const { return m_pActor; }
operator Actor* () { return m_pActor; }
operator Actor* () { return m_pActor; }
const Actor *operator->() const { return m_pActor; }
Actor *operator->() { return m_pActor; }
Actor *operator->() { return m_pActor; }
void Unload();
bool IsLoaded() const { return m_pActor != NULL; }
bool IsLoaded() const { return m_pActor != NULL; }
void Load( const RString &sPath );
void LoadFromNode( const RString &sDir, const XNode* pNode );
void LoadAndSetName( const RString &sScreenName, const RString &sActorName );