⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gridevent.java

📁 Java编写的小游戏扫雷代码,可以在多种环境下运行
💻 JAVA
字号:
package org.nebula.cwt.grid;

import java.awt.event.MouseEvent;
import java.awt.Point;

public class GridEvent {

	public int col, row;
	public int xOffset, yOffset;
    public MouseEvent evt;

	public GridEvent(int col,int row, int xOffset, int yOffset, MouseEvent evt) {
		this.col = col;
		this.row = row;
		this.xOffset = xOffset;
		this.yOffset = yOffset;
		this.evt = evt;
	}
}

⌨️ 快捷键说明

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