From 271d5c55260cc8a0198938f3259f793e3957e3e3 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 19 Mar 2025 03:42:35 +0000 Subject: Remove unrequired UIShader --- ui/uiComponent.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ui/uiComponent.h') 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 #include -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; }; -- cgit v1.2.3