IRender
void Line(Vector2 start, Vector2 end, Color clr);
void Box(Vector2 start, Vector2 end, Color clr);
void BoxFilled(Vector2 start, Vector2 end, Color clr);
void CircleFilled(Vector2 pos, float rad, int points, Color clr);
void Text(string text, Vector2 pos, Color clr, int size);
Vector2 ScreenPosition(Vector pos);
void Circle3D(Vector pos, int points, float rad, Color clr);
void CircleFilled3D(Vector pos, int points, float rad, Color clr);
void CylinderFilled3D(Vector pos, int points, float rad, float height, Color clr);
Last updated