KickJava   Java API By Example, From Geeks To Geeks.

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


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