summaryrefslogtreecommitdiff
path: root/Runtime/Graphics/UIQuad.h
diff options
context:
space:
mode:
Diffstat (limited to 'Runtime/Graphics/UIQuad.h')
-rw-r--r--Runtime/Graphics/UIQuad.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/Runtime/Graphics/UIQuad.h b/Runtime/Graphics/UIQuad.h
new file mode 100644
index 0000000..166b662
--- /dev/null
+++ b/Runtime/Graphics/UIQuad.h
@@ -0,0 +1,11 @@
+#pragma once
+
+class UIQuad
+{
+public :
+ void Draw();
+
+private:
+ float m_Left, m_Right, m_Top, m_Bottom;
+
+};