Corrected UniqueId implementation.

Thanks @Anaminus!
This commit is contained in:
Max
2022-04-24 22:28:42 -05:00
parent 3209d87331
commit f2d751a4c9
3 changed files with 45 additions and 8 deletions

16
DataTypes/UniqueId.cs Normal file
View File

@ -0,0 +1,16 @@
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;
}
}
}