


public interface prisonerA
        {

        public boolean your_move(String prisonerB);

        public void result(boolean Bs_move);

        public String getName();

        }


        //  public boolean your_move(String prisonerB);
        //
        //  This method is called during a prisoner's dilemma round.
        //  You are given the name of the other player.
        //  You must return a 0 if you want to cooperate, and a 1 if
        //  want to defect, in the CURRENT ROUND!

        //  public void result(boolean Bs_move);
        //
        //  This method is called AFTER a round is resolved.
        //  You are given prisoner B's move in the last round.
        //  (O for cooperate and 1 for defect)
        //  You can store this date for later use against B.  
        //  That is entirely up to you!

        //  public String getName();
        //  
        //  Simply return a string of max. 20 characters,
        //  uniquely identifying you.

        

