SimShift.Data.WorldMapCell.WorldMapCell C# (CSharp) Метод

WorldMapCell() публичный Метод

public WorldMapCell ( int cellX, int cellZ ) : System
cellX int
cellZ int
Результат System
        public WorldMapCell(int cellX, int cellZ)
        {
            points = new List<WorldMapPoint>();

            X = cellX;
            Z = cellZ;
        }
WorldMapCell