#pragma once #include #include #include namespace endofthejedi { class Renderer { private: protected: public: Renderer(); ~Renderer(); void drawCircle(float x, float y, float radius, float r, float g, float b); }; }