This commit is contained in:
2026-05-02 15:18:39 +02:00
parent 8be2cea49a
commit 56d567b77d
19 changed files with 634 additions and 94 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include <object/ui/uitext.hpp>
namespace Game::AGame {
class HUDText : public Object::UIText {
using Object::UIText::UIText;
public:
~HUDText() override = default;
void start() override;
void update(float deltaTime) override;
};
}