Loading...
Searching...
No Matches
Convex.h
Go to the documentation of this file.
1// Copyright (c) 2025 Dave R. Smith. All rights reserved.
2// Malena Framework — Proprietary Software. See LICENSE for terms.
3
4
5#ifndef MALENA_CONVEX_H
6#define MALENA_CONVEX_H
7
8#pragma once
9
13
14namespace ml
15{
16
54 class MALENA_API Convex : public Graphic<sf::ConvexShape>
55 {
56 public:
57 using Graphic::Graphic;
58#ifdef _WIN32
59 ~Convex() override;
60#endif
61 };
62
70 template<typename MANIFEST>
71 class ConvexWith : public Convex, public Customizable<MANIFEST> {};
72} // namespace ml
73#endif // MALENA_CONVEX_H
A framework-integrated convex polygon shape.
Definition Convex.h:55
Convex with an attached manifest.
Definition Convex.h:71
#define MALENA_API
Definition Component.h:22