KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > innig > macker > example > modularity > game > Move


1 package net.innig.macker.example.modularity.game;
2
3 public interface Move
4     {
5     public String JavaDoc getName();
6     public int getScoreFor(Move otherPlayersMove);
7     }
Popular Tags