mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-14 16:40:40 +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()
|
||
|
{
|
||
|
}
|
||
|
}
|