NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Framework/GUIDManager.cs

12 lines
199 B
C#
Raw Normal View History

2023-08-22 19:08:45 +08:00
namespace Framework
{
public class GUIDManager
{
2023-12-14 15:31:46 +08:00
private static uint _guid = 100;
2023-08-22 19:08:45 +08:00
public static uint GenGuid()
{
return ++_guid;
}
}
}