public EntityPlacement(Player player, CellPoint cellPoint, Type entityType)
 {
     Player     = player;
     CellPoint  = cellPoint;
     EntityType = entityType;
 }
Example #2
0
 public EntityBlock(CellPoint offset, params EntityPlacement[] entityPlacements)
 {
     EntityPlacements = entityPlacements;
     Offset           = offset;
 }