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