previewtable.java

来自「JAVA课程设计需要」· Java 代码 · 共 24 行

JAVA
24
字号
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;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?