KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > innig > macker > example > modularity > game > impl > RochambeauGame


1 package net.innig.macker.example.modularity.game.impl;
2
3 import net.innig.macker.example.modularity.game.*;
4 import net.innig.macker.example.modularity.player.*;
5 import java.util.*;
6
7 public class RochambeauGame
8     extends AbstractGame
9     {
10     public Set getLegalMoves()
11         { return RochambeauMove.ALL; }
12     }
13
Popular Tags