The-Powder-Toy/src/interface/Label.h

27 lines
400 B
C
Raw Normal View History

2012-01-14 12:51:24 -06:00
#ifndef LABEL_H
#define LABEL_H
#include <string>
#include "Component.h"
namespace ui
{
class Label : public Component
{
public:
2012-01-17 14:46:06 -06:00
Label(Window* parent_state, std::string labelText);
2012-01-14 12:51:24 -06:00
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