R-Type  2
Doom but in better
Loading...
Searching...
No Matches
ECSPackage.hpp
Go to the documentation of this file.
1/*
2** EPITECH PROJECT, 2024
3** rtype (Workspace)
4** File description:
5** ECSPackage.hpp
6*/
7
8#pragma once
9#include <cstdint>
10
11namespace GUI
12{
13 namespace ECS
14 {
15 namespace GameComponents
16 {
17 struct ECSPackage {
18 std::uint32_t EntityID;
19 int posx;
20 int posy;
21 };
22
23 typedef struct ECSPackage ECSPackage_t;
24 }
25 }
26}