27 lines
404 B
C++
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
|