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