From 0d432961a29d509cd0d1fa80361f04009dcf9c17 Mon Sep 17 00:00:00 2001
From: Dan Goodliffe <dan@randomdan.homeip.net>
Date: Wed, 19 Mar 2025 03:19:38 +0000
Subject: Remove lots of stuff not required or superseded with ImGui use

---
 ui/iconButton.h | 26 --------------------------
 1 file changed, 26 deletions(-)
 delete mode 100644 ui/iconButton.h

(limited to 'ui/iconButton.h')

diff --git a/ui/iconButton.h b/ui/iconButton.h
deleted file mode 100644
index 0afe92d..0000000
--- a/ui/iconButton.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#pragma once
-
-#include "icon.h"
-#include "uiComponent.h"
-#include <glArrays.h>
-#include <glm/glm.hpp>
-#include <string>
-
-class UIShader;
-union SDL_Event;
-
-static const constexpr glm::vec2 ICON_SIZE {32.F, 32.F};
-
-class IconButton : public UIComponent {
-public:
-	IconButton(const std::string & icon, glm::vec2 position, UIEvent click);
-
-	void render(const UIShader &, const Position & parentPos) const override;
-
-	bool handleInput(const SDL_Event & e, const Position & parentPos) override;
-
-	Icon icon;
-	UIEvent click;
-	glVertexArray m_vertexArrayObject;
-	glBuffer m_vertexArrayBuffer;
-};
-- 
cgit v1.2.3