mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 15:15:38 +00:00
14 lines
202 B
C
14 lines
202 B
C
|
#ifndef _GUICOMPONENT_H_
|
||
|
#define _GUICOMPONENT_H_
|
||
|
|
||
|
class GuiComponent
|
||
|
{
|
||
|
public:
|
||
|
GuiComponent();
|
||
|
~GuiComponent();
|
||
|
virtual void render() { };
|
||
|
virtual unsigned int getLayer() { return 0; };
|
||
|
};
|
||
|
|
||
|
#endif
|