Initial Commit
This commit is contained in:
11
include/Game/Entity/Box.h
Normal file
11
include/Game/Entity/Box.h
Normal 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) {}
|
||||
};
|
Reference in New Issue
Block a user