ES-DE/src/GuiComponent.h

14 lines
202 B
C
Raw Normal View History

#ifndef _GUICOMPONENT_H_
#define _GUICOMPONENT_H_
class GuiComponent
{
public:
GuiComponent();
~GuiComponent();
virtual void render() { };
virtual unsigned int getLayer() { return 0; };
};
#endif