mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-04 20:46:29 +03:00
18 lines
324 B
C++
18 lines
324 B
C++
#ifndef EE_GRAPHICS_CIRCLEDRAWABLE_HPP
|
|
#define EE_GRAPHICS_CIRCLEDRAWABLE_HPP
|
|
|
|
#include <eepp/graphics/arcdrawable.hpp>
|
|
|
|
namespace EE { namespace Graphics {
|
|
|
|
class EE_API CircleDrawable : public ArcDrawable {
|
|
public:
|
|
CircleDrawable();
|
|
|
|
CircleDrawable( const Float& radius, const Uint32& segmentsCount );
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|