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