mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-16 09:21:12 +00:00
19 lines
211 B
Text
19 lines
211 B
Text
|
|
||
|
// Base class for game screens.
|
||
|
class GameScreen : Object ui
|
||
|
{
|
||
|
virtual bool OnEvent(InputEvent ev)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
virtual bool Tick(int framenum)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
virtual void Draw()
|
||
|
{
|
||
|
}
|
||
|
}
|