Basic renderhierarchy async updates

This commit is contained in:
Dynamitos
2021-10-05 12:24:41 +02:00
parent 5dfc8300c5
commit a6f784e6a1
11 changed files with 123 additions and 24 deletions
+21
View File
@@ -0,0 +1,21 @@
#pragma once
#include "MinimalEngine.h"
#include "RenderHierarchy.h"
namespace Seele
{
namespace UI
{
DECLARE_REF(Panel)
class System
{
public:
System();
virtual ~System();
private:
PPanel rootPanel;
Array<RenderHierarchyUpdate*> updates;
};
DEFINE_REF(System)
} // namespace UI
} // namespace Seele