entitypush.java
来自「一个很不错的j2me的rpg游戏的源码」· Java 代码 · 共 18 行
JAVA
18 行
package mobileRPG.client;
public class EntityPush extends EntityPath {
public int xPushTarget, yPushTarget;
public EntityPush(int xTarget, int yTarget, EntityPath next, int xPushTarget, int yPushTarget) {
super(xTarget, yTarget, next);
this.xPushTarget = xPushTarget;
this.yPushTarget = yPushTarget;
}
public boolean isPush() {
return true;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?