GameTable.java~1~
上传用户:liming9091
上传日期:2014-10-27
资源大小:3376k
文件大小:0k
源码类别:

Java编程

开发平台:

Java

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