Files
Seele/src/Engine/UI/Elements/Panel.h
T
2022-04-18 18:08:38 +02:00

21 lines
252 B
C++

#pragma once
#include "Element.h"
namespace Seele
{
namespace UI
{
DECLARE_REF(Layout)
class Panel : Element
{
public:
Panel();
virtual ~Panel();
private:
PLayout activeLayout;
};
DEFINE_REF(Panel);
} // namespace UI
} // namespace Seele