#pragma once #include #include class Renderable : public Entity { public: virtual void Render() {} public: explicit Renderable(const Vector2& position, float rotation = 0.0f) : Entity(position, rotation) {} };