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