location.java

来自「扫雷完整的程序」· Java 代码 · 共 22 行

JAVA
22
字号
/*
 * Created on Mar 25, 2005
 *
 * TODO to mark the coordinate of button
 */
package model;

/**
 * @author mqqqvpppm
 * 
 * TODO to mark the coordinate of button
 */
public class Location {
	final public int x;

	final public int y;

	public Location(int x, int y) {
		this.x = x;
		this.y = y;
	}
}

⌨️ 快捷键说明

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