diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-19 03:42:35 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-19 03:42:35 +0000 |
commit | 271d5c55260cc8a0198938f3259f793e3957e3e3 (patch) | |
tree | 9e4ffbb7a47bb7e027aee5b01cb2665532e2b391 /ui/uiComponent.h | |
parent | Remove lots of stuff not required or superseded with ImGui use (diff) | |
download | ilt-271d5c55260cc8a0198938f3259f793e3957e3e3.tar.bz2 ilt-271d5c55260cc8a0198938f3259f793e3957e3e3.tar.xz ilt-271d5c55260cc8a0198938f3259f793e3957e3e3.zip |
Remove unrequired UIShader
Diffstat (limited to 'ui/uiComponent.h')
-rw-r--r-- | ui/uiComponent.h | 3 |
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; }; |