Loading...
Searching...
No Matches
Convex.h
Go to the documentation of this file.
1
2#ifndef CONVEX_H
3#define CONVEX_H
4
5#pragma once
6
7#include <Malena/Core/Core.h>
9
10namespace ml
11{
12
50 class Convex : public Graphic<sf::ConvexShape>
51 {
52 public:
53 using Graphic::Graphic;
54 };
55
63 template<typename MANIFEST>
64 class ConvexWith : public Convex, public Customizable<MANIFEST> {};
65} // namespace ml
66#endif // CONVEX_H
A framework-integrated convex polygon shape.
Definition Convex.h:51
Convex with an attached manifest.
Definition Convex.h:64
Definition Component.h:18