Initial commit.

This commit is contained in:
jmsgrogan 2020-05-02 08:31:03 +01:00
commit 59c6161fdb
134 changed files with 4751 additions and 0 deletions

View file

@ -0,0 +1,22 @@
#pragma once
#include "Widget.h"
class Label : public Widget
{
private:
std::string mLabel;
public:
Label();
void SetLabel(const std::string& text);
static std::shared_ptr<Label> Create();
void OnPaintEvent(PaintEventPtr event);
};
using LabelPtr = std::shared_ptr<Label>;