summaryrefslogtreecommitdiff
path: root/includes/interface/Label.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/interface/Label.h')
-rw-r--r--includes/interface/Label.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/includes/interface/Label.h b/includes/interface/Label.h
deleted file mode 100644
index 2168956..0000000
--- a/includes/interface/Label.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef LABEL_H
-#define LABEL_H
-
-#include <string>
-
-#include "Component.h"
-
-namespace ui
-{
- class Label : public Component
- {
- public:
- Label(State* parent_state, std::string labelText);
-
- Label(Point position, Point size, std::string labelText);
-
- Label(std::string labelText);
- virtual ~Label();
-
- std::string LabelText;
-
- virtual void Draw(const Point& screenPos);
- };
-}
-
-#endif // LABEL_H