Example #1
0
 public PartialGridWPool(PartialGridWPool b)
     : base(b)
 {
     m_nodePool = b.m_nodePool;
 }
Example #2
0
        public override BaseGrid Clone()
        {
            PartialGridWPool tNewGrid = new PartialGridWPool(m_nodePool, m_gridRect);

            return(tNewGrid);
        }
Example #3
0
 public override BaseGrid Clone()
 {
     PartialGridWPool tNewGrid = new PartialGridWPool(m_nodePool,m_gridRect);
     return tNewGrid;
 }
Example #4
0
 public PartialGridWPool(PartialGridWPool b)
     : base(b)
 {
     m_nodePool = b.m_nodePool;
 }
Example #5
0
		private BaseGrid createPartialGridWithPool(bool[][] array)
		{
			NodePool nodePool = new NodePool ();
			var grid = new PartialGridWPool (nodePool, new GridRect(0, 0, array.Length, array[0].Length));
			initGrid(grid, array);
			return grid;
		}