#pragma once #include #include union SDL_Event; class UIComponent { public: UIComponent() = default; virtual ~UIComponent() = default; NO_MOVE(UIComponent); NO_COPY(UIComponent); virtual void render() = 0; virtual bool handleInput(const SDL_Event &) = 0; };