modify Input() on screens to return boolean

This commit is contained in:
Devin J. Pohly
2013-01-12 22:48:38 -05:00
parent 79583090ac
commit d13ac7e7a2
98 changed files with 861 additions and 697 deletions
+2 -2
View File
@@ -22,9 +22,9 @@ void ScreenSandbox::HandleScreenMessage( const ScreenMessage SM )
Screen::HandleScreenMessage( SM );
}
void ScreenSandbox::Input( const InputEventPlus &input )
bool ScreenSandbox::Input( const InputEventPlus &input )
{
Screen::Input( input );
return Screen::Input( input );
}
void ScreenSandbox::Update( float fDeltaTime )