// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "UILabel.hpp" namespace Dawn { class UISimpleLabel : public UILabel { public: // @optional StateProperty text; // @optional StateProperty> font; // @optional StateProperty size; // @optional StateProperty style; // @optional StateProperty decorations; // @optional StateProperty color; UISimpleLabel(SceneItem *item); void onStart() override; }; }