Files
Blitz/include/blitz/common/Defines.h
2024-03-09 14:53:48 +01:00

27 lines
404 B
C++

#pragma once
/**
* \file Defines.h
* \brief File containing constants and typedefs
*/
#include <cstdint>
namespace blitz {
namespace game {
/**
* \typedef EntityID
* \brief Represents the identifier of an Entity
*/
typedef std::uint32_t EntityID;
/**
* \typedef PlayerID
* \brief Represents the identifier of a Player
*/
typedef EntityID PlayerID;
} // namespace game
} // namespace blitz