mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
18 lines
304 B
C++
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
|