Loading...
Searching...
No Matches
Circle.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#ifndef MALENA_CIRCLE_H
5#define MALENA_CIRCLE_H
6
7#pragma once
8
12
13namespace ml
14{
42 class MALENA_API Circle : public Graphic<sf::CircleShape>
43 {
44 public:
45 using Graphic::Graphic;
46#ifdef _WIN32
47 ~Circle() override;
48#endif
49 };
50
58 template<typename MANIFEST>
59 class CircleWith : public Circle, public Customizable<MANIFEST> {};
60
61} // namespace ml
62
63#endif // MALENA_CIRCLE_H
A framework-integrated circle shape.
Definition Circle.h:43
Circle with an attached manifest.
Definition Circle.h:59
#define MALENA_API
Definition Component.h:22