Initial commit.
This commit is contained in:
commit
59c6161fdb
134 changed files with 4751 additions and 0 deletions
18
src/ui_elements/ui_events/PaintEvent.cpp
Normal file
18
src/ui_elements/ui_events/PaintEvent.cpp
Normal file
|
@ -0,0 +1,18 @@
|
|||
#include "PaintEvent.h"
|
||||
|
||||
PaintEvent::PaintEvent()
|
||||
: UiEvent()
|
||||
{
|
||||
mType = UiEvent::Type::Paint;
|
||||
}
|
||||
|
||||
PaintEvent::~PaintEvent()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
std::shared_ptr<PaintEvent> PaintEvent::Create()
|
||||
{
|
||||
return std::make_shared<PaintEvent>();
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue