Loading...
Searching...
No Matches
Circle.h
Go to the documentation of this file.
1#ifndef CIRCLE_H
2#define CIRCLE_H
3
4#pragma once
5
8
9namespace ml
10{
38 class Circle : public Graphic<sf::CircleShape>
39 {
40 public:
41 using Graphic::Graphic;
42 };
43
51 template<typename MANIFEST>
52 class CircleWith : public Circle, public Customizable<MANIFEST> {};
53
54} // namespace ml
55
56#endif // CIRCLE_H
A framework-integrated circle shape.
Definition Circle.h:39
Circle with an attached manifest.
Definition Circle.h:52
Definition Component.h:18