EndCommand

This commit is contained in:
Glenn Maynard
2007-04-17 17:53:36 +00:00
parent 6f0eba5783
commit 352067b509
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -83,6 +83,11 @@ void Screen::BeginScreen()
this->PlayCommand( "Begin" );
}
void Screen::EndScreen()
{
this->PlayCommand( "End" );
}
void Screen::Update( float fDeltaTime )
{
ActorFrame::Update( fDeltaTime );
+1 -1
View File
@@ -43,7 +43,7 @@ public:
virtual void BeginScreen();
/* This is called when the screen is popped. */
virtual void EndScreen() { }
virtual void EndScreen();
virtual void Update( float fDeltaTime );
virtual bool OverlayInput( const InputEventPlus &input );