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