R-Type  2
Doom but in better
Loading...
Searching...
No Matches
EntityActionType.hpp
Go to the documentation of this file.
1/*
2** EPITECH PROJECT, 2024
3** rtype (Workspace)
4** File description:
5** EntityActionType.hpp
6*/
7
8#pragma once
9
10namespace GUI
11{
12 namespace ECS
13 {
14 namespace GameComponents
15 {
16 enum class EntityActionType {
17 MOVE,
18 SHOOT
19 };
20 }
21 }
22}