示例#1
0
 public TerrainComponent(TerrainCMPType type)
 {
     this.type = type;
 }
示例#2
0
 public static bool HasComponent(this ICell self, TerrainCMPType type)
 {
     return(self.components.Any(x => x.type == type));
 }