8template <
typename T>
inline T
GetEntityIndex(
const T &entity) {
return entity & 0x000FFFFF; }
10template <
typename T>
inline T
GetEntityVersion(
const T &entity) {
return entity >> 20; }
Definition EntityToIDString.hpp:7
T GetEntityIndex(const T &entity)
Definition EntityToIDString.hpp:8
std::string EntityToDebugString(const T &entity)
Definition EntityToIDString.hpp:12
T GetEntityVersion(const T &entity)
Definition EntityToIDString.hpp:10