GameTable.java~2~
Upload User: liming9091
Upload Date: 2014-10-27
Package Size: 3376k
Code Size: 0k
Category:

Java Develop

Development Platform:

Java

  1. package russiagame;
  2. public class GameTable//游戏桌
  3. {
  4. public static int[][] myTable;//储存标志0表示无,1表示有
  5. public static int x;//横坐标
  6. public static int y;//纵坐标
  7. public GameTable()
  8. {
  9. }
  10. public GameTable(int x,int y)
  11. {
  12. this.x=x;
  13. this.y=y;
  14. }
  15. public static void main(String args[])
  16. {
  17. new GameTable();
  18. }
  19. }