Files
Seele/src/Engine/UI/Elements/Panel.h
T

21 lines
252 B
C++
Raw Normal View History

2021-09-23 10:10:39 +02:00
#pragma once
#include "Element.h"
namespace Seele
{
namespace UI
{
2022-04-18 18:08:38 +02:00
DECLARE_REF(Layout)
2021-09-23 10:10:39 +02:00
class Panel : Element
{
public:
Panel();
virtual ~Panel();
2022-04-18 18:08:38 +02:00
private:
PLayout activeLayout;
2021-09-23 10:10:39 +02:00
};
2022-04-18 18:08:38 +02:00
2021-09-29 22:12:56 +02:00
DEFINE_REF(Panel);
2021-09-23 10:10:39 +02:00
} // namespace UI
} // namespace Seele