Files
DemoGame/include/Engine/Entity/Renderable.h
2025-01-02 13:56:33 -05:00

15 lines
308 B
C++

#pragma once
#include <Engine/Entity/Entity.h>
#include <JGL/JGL.h>
namespace Engine {
class Renderable;
}
class Engine::Renderable : public Entity {
public:
virtual void Render() {}
public:
explicit Renderable(const Vector2& position, float rotation = 0.0f) : Entity(position, rotation) {}
};