Files
2025-09-18 17:55:52 -04:00

18 lines
304 B
C++

#ifndef __RAKNET_TIME_H
#define __RAKNET_TIME_H
#include "NativeTypes.h"
#include "RakNetDefines.h"
namespace RakNet {
// ROBLOX CHANGE: ALWAYS 64-bit
typedef unsigned long long Time;
typedef unsigned int TimeMS;
typedef unsigned long long TimeUS;
// END ROBLOX CHANGE
}; // namespace RakNet
#endif