Java poker implementation
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Main.java 535B

1234567891011121314151617181920212223242526272829
  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;
  8. import com.md87.cardgame.config.ConfigScreen;
  9. /**
  10. *
  11. * @author Chris
  12. */
  13. public class Main {
  14. /** Creates a new instance of Main */
  15. public Main() {
  16. }
  17. /**
  18. * @param args the command line arguments
  19. */
  20. public static void main(String[] args) {
  21. new ConfigScreen();
  22. }
  23. }