📄 bullet.java
字号:
public class Bullet {
public int bx; //子弹的横坐标
public int by; //子弹的纵坐标
public int bstep; //子弹移动速度
public Bullet(int bx,int by,int bstep){
this.bx=bx;
this.by=by;
this.bstep=bstep;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -