r-type  0.0.0
R-Type main
Loading...
Searching...
No Matches
Entity.hpp
Go to the documentation of this file.
1///
2/// @file Entity.hpp
3/// @brief This file contains the entity definitions
4/// @namespace ecs
5///
6
7#pragma once
8
9#include <cstdint>
10
11namespace ecs
12{
13 using Entity = std::uint32_t;
14 constexpr Entity INVALID_ENTITY = 0;
15} // namespace ecs
std::uint32_t Entity
Definition Entity.hpp:13
constexpr Entity INVALID_ENTITY
Definition Entity.hpp:14