PreviewTable.java~1~
资源名称:Java.rar [点击查看]
上传用户:liming9091
上传日期:2014-10-27
资源大小:3376k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package russiagame;
- /**
- * <p>Title: </p>
- * <p>Description: </p>
- * <p>Copyright: Copyright (c) 2003</p>
- * <p>Company: </p>
- * @author not attributable
- * @version 1.0
- */
- public class PreviewTable {
- public static int[][] myTable;//储存标志0表示无,1表示有
- public static int x;//横坐标
- public static int y;//纵坐标
- public PreviewTable()
- {
- }
- public PreviewTable(int x,int y)
- {
- this.x=x;
- this.y=y;
- }
- public static void main(String args[])
- {
- new GameTable();
- }
- }