コード例 #1
0
ファイル: MapGeometry.cs プロジェクト: bluetsys/freeserf.net
            protected Iterator(Iterator other)
            {
                if (other == null)
                {
                    throw new NullReferenceException("Iterator construction with null reference.");
                }

                cycle  = other.cycle;
                offset = other.offset;
            }
コード例 #2
0
ファイル: MapGeometry.cs プロジェクト: bluetsys/freeserf.net
 internal IteratorCCW(DirectionCycle cycle, int offset)
     : base(cycle, offset)
 {
 }
コード例 #3
0
ファイル: MapGeometry.cs プロジェクト: bluetsys/freeserf.net
 protected Iterator(DirectionCycle cycle, int offset)
 {
     this.cycle  = cycle;
     this.offset = offset;
 }