Id: 5269; Nick: n/a; Timestamp: 2008-02-06 18:44:27; Pasted as: Java
Description: n/a
1
2
3
4
5
6
7
8
9
10
11
12
13
public void copyCells(int row, int col, Colony alienColony) {
		int a,b;
 
		a = row;
		for (int i=0;i<alienColony.colony.length;i++) {
			b = col;
			for (int j=0;j<alienColony.colony[i].length;j++) {
				colony[a][b] = alienColony.colony[i][j];
				b++;
			}
			a++;
		}
	}
Options: New, Download,
;
Copyright © 2006 by Zyberdog - Some rights reserved. (Browse/Disclaimer/Stats/About) - Highlighted with GeSHi