Difference between revisions of "Computer Science/61b/Projects/Ocean/Test4.java"
< Computer Science | 61b | Projects | Ocean
(No difference)
|
Revision as of 03:17, 14 November 2006
/* Test4.java */
public class Test4 {
public static int empty;
public static int shark;
public static int fish;
public static void init() {
empty = Ocean.EMPTY;
shark = Ocean.SHARK;
fish = Ocean.FISH;
}
}