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

17 lines
196 B
C++
Raw Normal View History

2021-09-23 10:10:39 +02:00
#pragma once
#include "Element.h"
namespace Seele
{
namespace UI
{
class Panel : Element
{
public:
Panel();
virtual ~Panel();
};
2021-09-29 22:12:56 +02:00
DEFINE_REF(Panel);
2021-09-23 10:10:39 +02:00
} // namespace UI
} // namespace Seele