bombbutton.java
来自「accp s1毕业项目 考试管理系统」· Java 代码 · 共 21 行
JAVA
21 行
package com.exam.ui.game;
import javax.swing.JButton;
public class BombButton extends JButton {
private static final long serialVersionUID = 1L;
public int x, y;
public int roundBombCount;
public boolean isBomb;
public boolean isRight;
public boolean isLeft;
public BombButton(int x, int y) {
this.x = x;
this.y = y;
this.roundBombCount = 0;
this.isBomb = false;
this.isRight = false;
this.isLeft = false;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?