summaryrefslogtreecommitdiff
path: root/ui/uiComponent.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/uiComponent.h')
-rw-r--r--ui/uiComponent.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/uiComponent.h b/ui/uiComponent.h
index 9178c6b..6ee347e 100644
--- a/ui/uiComponent.h
+++ b/ui/uiComponent.h
@@ -3,7 +3,6 @@
#include <glm/glm.hpp>
#include <special_members.h>
-class UIShader;
union SDL_Event;
class UIComponent {
@@ -14,6 +13,6 @@ public:
NO_MOVE(UIComponent);
NO_COPY(UIComponent);
- virtual void render(const UIShader &) const = 0;
+ virtual void render() const = 0;
virtual bool handleInput(const SDL_Event &) = 0;
};