📄 ent.java
字号:
class ent
{
public int x;
public int y;
public int z;
public int i;
public boolean moves;
public boolean dirL;
public boolean dirR;
public boolean dirU;
public boolean dirD;
public int freeze;
public int moveSpeed;
public boolean flip;
public ent(int xp, int yp, int zp)
{
this.x=xp;
this.y=yp;
this.z=zp;
this.i=zp;
this.moves=false;
this.dirL=false;
this.dirR=false;
this.dirU=false;
this.dirD=false;
this.freeze=0;
this.moveSpeed=0;
this.flip=true;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -