This commit is contained in:
2023-03-05 12:58:59 -08:00
parent 96b9cb75f0
commit 7d20397e83
24 changed files with 127 additions and 1522 deletions

View File

@ -0,0 +1,20 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "scene/SceneItemComponent.hpp"
#include "UICanvas.hpp"
namespace Dawn {
class UIComponent : public SceneItemComponent {
private:
UICanvas *canvas = nullptr;
public:
UIComponent(SceneItem *item);
friend class UICanvas;
};
}