Files
2026-02-21 16:45:37 +08:00

19 lines
225 B
C#

namespace PrefabEvolution
{
public static class Utils
{
public static bool IsBuildingPlayer
{
get
{
return false;
}
}
public static T Create<T>() where T : class, new()
{
return (T)null;
}
}
}