Changed the entity system to utilize mix-ins. Added instanced sprites. Texture support.
15 lines
206 B
C++
15 lines
206 B
C++
#include <Engine/types/entity/Hud.h>
|
|
|
|
namespace Game {
|
|
class DemoGameHud;
|
|
}
|
|
|
|
class Game::DemoGameHud : public Engine::Hud {
|
|
public:
|
|
void Render() override;
|
|
public:
|
|
DemoGameHud() : Hud() {}
|
|
};
|
|
|
|
|