diff --git a/stepmania/src/Actor.h b/stepmania/src/Actor.h index 1ac528112d..06e5611be0 100644 --- a/stepmania/src/Actor.h +++ b/stepmania/src/Actor.h @@ -91,6 +91,7 @@ public: const RString &GetName() const { return m_sName; } virtual void SetName( const RString &sName ) { m_sName = sName; } + void SetParent( Actor *pParent ); float GetX() const { return m_current.pos.x; }; float GetY() const { return m_current.pos.y; }; @@ -341,8 +342,6 @@ public: // If we're a leaf, then execute this command. virtual void RunCommandsOnLeaves( const LuaReference& cmds ) { RunCommands(cmds); } - void SetParent( Actor *pParent ); - // // Messages //