KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > Game


1 public class Game implements GameConstants {
2
3     public static void main(String JavaDoc [] args) {
4         System.out.println("Playing from: "+LOW+" to "+HIGH);
5     }
6 }
7
8 interface GameConstants {
9
10     public static int HIGH = 100;
11     public static int LOW = 1;
12
13 }
14
15
Popular Tags