Roblox-File-Format/DataTypes/UniqueId.cs
2022-04-24 22:28:42 -05:00

17 lines
350 B
C#

namespace RobloxFiles.DataTypes
{
public struct UniqueId
{
public readonly uint Time;
public readonly uint Index;
public readonly ulong Random;
public UniqueId(uint time, uint index, ulong random)
{
Time = time;
Index = index;
Random = random;
}
}
}