Initial Commit

This commit is contained in:
2025-01-02 00:15:37 -05:00
commit b9afc57e6e
29 changed files with 1826 additions and 0 deletions

11
include/Game/Entity/Box.h Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
#include <Engine/Entity/Renderable.h>
#include "Engine/Globals.h"
class Box final : public Renderable {
public:
void Render() final;
void Update() final;
public:
explicit Box(const Vector2& position, float rotation = 0.0f) : Renderable(position, rotation) {}
};

View File

@@ -0,0 +1,10 @@
#include <Engine/Entity/Hud.h>
class DemoGameHud : public Hud {
public:
void Render() override;
public:
DemoGameHud() : Hud() {}
};