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.

ClassicFront2.java 377B

1234567891011121314151617181920212223
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package com.md87.cardgame.config.cards;
  6. /**
  7. *
  8. * @author chris
  9. */
  10. public class ClassicFront2 implements CardStyle {
  11. @Override
  12. public String toString() {
  13. return "Classic large";
  14. }
  15. public String getFolderName() {
  16. return "classic2";
  17. }
  18. }