📄 location.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -