?? thlanpcrun.java
字號:
import java.io.IOException;
import javax.microedition.lcdui.Image;
import javax.microedition.lcdui.game.Sprite;
public class ThLaNpcRun {
Image two_imgNpcOne;
Sprite two_npcOne;
public ThLaNpcRun()
{
try {
two_imgNpcOne=Image.createImage("/res/Two_Npc_One.png");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
two_npcOne=new Sprite(two_imgNpcOne,two_imgNpcOne.getWidth(),two_imgNpcOne.getHeight());
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -