summaryrefslogtreecommitdiff
path: root/includes/interface/Label.h
blob: 2168956844b324d83e406e12edd78ef9e38ffffa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#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