f2d751a4c9
Thanks @Anaminus!
17 lines
350 B
C#
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;
|
|
}
|
|
}
|
|
}
|