Adding EnTT
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
#include "Button.h"
|
||||
|
||||
using namespace Seele;
|
||||
using namespace Seele::UI;
|
||||
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
#include "Element.h"
|
||||
|
||||
namespace Seele
|
||||
{
|
||||
namespace UI
|
||||
{
|
||||
class Button : public Element
|
||||
{
|
||||
|
||||
};
|
||||
} // namespace UI
|
||||
} // namespace Seele
|
||||
@@ -1,6 +1,10 @@
|
||||
target_sources(Engine
|
||||
PRIVATE
|
||||
Button.h
|
||||
Button.cpp
|
||||
Element.h
|
||||
Element.cpp
|
||||
Label.h
|
||||
Label.cpp
|
||||
Panel.h
|
||||
Panel.cpp)
|
||||
@@ -0,0 +1,4 @@
|
||||
#include "Label.h"
|
||||
|
||||
using namespace Seele;
|
||||
using namespace Seele::UI;
|
||||
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
#include "Element.h"
|
||||
|
||||
namespace Seele
|
||||
{
|
||||
namespace UI
|
||||
{
|
||||
class Label : public Element
|
||||
{
|
||||
public:
|
||||
Label();
|
||||
~Label();
|
||||
private:
|
||||
std::string text;
|
||||
};
|
||||
} // namespace UI
|
||||
} // namespace Seele
|
||||
Reference in New Issue
Block a user