19 lines
225 B
C#
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;
|
|
}
|
|
}
|
|
}
|