R-Type  2
Doom but in better
Loading...
Searching...
No Matches
ActiveShape.hpp
Go to the documentation of this file.
1/*
2** EPITECH PROJECT, 2024
3** rtype (Workspace)
4** File description:
5** ActiveShape.hpp
6*/
7
14#pragma once
15
16namespace GUI
17{
18 namespace ECS
19 {
20 namespace Systems
21 {
26 enum class ActiveShape {
27 NONE = -1,
28 RECTANGLE = 0,
29 CIRCLE,
30 CONVEX
31 };
32 }
33 }
34}
ActiveShape
Enum representing different types of shapes managed by the ShapeComponent.
@ NONE
No shape initialized.