remove empty override
This commit is contained in:
@@ -30,15 +30,6 @@ Screen::~Screen()
|
||||
|
||||
}
|
||||
|
||||
void Screen::AddChild( Actor* pActor )
|
||||
{
|
||||
// add only if the actor is on screen
|
||||
// float fX = pActor->GetX();
|
||||
// float fY = pActor->GetY();
|
||||
// if( SCREEN_LEFT>=fX && fX<=SCREEN_RIGHT && SCREEN_TOP>=fY && fY<=SCREEN_BOTTOM )
|
||||
ActorFrame::AddChild( pActor );
|
||||
}
|
||||
|
||||
bool Screen::SortMessagesByDelayRemaining(const Screen::QueuedScreenMessage &m1,
|
||||
const Screen::QueuedScreenMessage &m2)
|
||||
{
|
||||
|
||||
@@ -25,8 +25,6 @@ public:
|
||||
Screen( CString sName ); // enforce that all screens have m_sName filled in
|
||||
virtual ~Screen();
|
||||
|
||||
virtual void AddChild( Actor* pActor );
|
||||
|
||||
virtual void Update( float fDeltaTime );
|
||||
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
|
||||
static bool ChangeCoinModeInput( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI ); // return true if CoinMode changed
|
||||
|
||||
Reference in New Issue
Block a user