Java poker implementation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Hand.java 397B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) Chris 'MD87' Smith, 2007. All rights reserved.
  3. *
  4. * This code may not be redistributed without prior permission from the
  5. * aforementioned copyright holder(s).
  6. */
  7. package com.md87.cardgame.interfaces;
  8. import com.md87.cardgame.Deck;
  9. /**
  10. *
  11. * @author Chris
  12. */
  13. public interface Hand extends Comparable<Hand> {
  14. String getFriendlyName();
  15. Deck getDeck();
  16. }