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