This commit is contained in:
EmsiaetKadosh
2025-02-05 15:13:02 +08:00
parent edcc095979
commit a086558f2d
19 changed files with 388 additions and 56 deletions
+2 -1
View File
@@ -5,8 +5,9 @@
#pragma once
#include "Renderer.h"
class Hud : public IRenderable {
class Hud final : public IRenderable, public ITickable {
public:
void render() const noexcept override;
void tick() noexcept override;
};