From 0d432961a29d509cd0d1fa80361f04009dcf9c17 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 19 Mar 2025 03:19:38 +0000 Subject: Remove lots of stuff not required or superseded with ImGui use --- ui/uiComponent.h | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) (limited to 'ui/uiComponent.h') diff --git a/ui/uiComponent.h b/ui/uiComponent.h index 71d2659..9178c6b 100644 --- a/ui/uiComponent.h +++ b/ui/uiComponent.h @@ -1,32 +1,19 @@ #pragma once -#include #include #include class UIShader; union SDL_Event; -struct SDL_MouseButtonEvent; -using UIEvent = std::function; class UIComponent { public: - struct Position { - glm::vec2 origin, size; - Position operator+(const Position &) const; - Position operator+(const glm::vec2 &) const; - bool operator&(const SDL_MouseButtonEvent &) const; - bool operator&(const glm::vec2 &) const; - }; - - explicit UIComponent(Position); + UIComponent() = default; virtual ~UIComponent() = default; NO_MOVE(UIComponent); NO_COPY(UIComponent); - virtual void render(const UIShader &, const Position & parentPos) const = 0; - virtual bool handleInput(const SDL_Event &, const Position & parentPos) = 0; - - Position position; + virtual void render(const UIShader &) const = 0; + virtual bool handleInput(const SDL_Event &) = 0; }; -- cgit v1.2.3