12 lines
186 B
C++
12 lines
186 B
C++
#pragma once
|
|
#include <Engine/Entity/Renderable.h>
|
|
|
|
namespace Engine {
|
|
class Hud;
|
|
}
|
|
|
|
class Engine::Hud : public Engine::Renderable {
|
|
public:
|
|
Hud() : Renderable({0, 0}, 0) {};
|
|
};
|