コード例 #1
0
ファイル: PlayCanvas.java プロジェクト: julioa/javame-samples
 protected void keyPressed(int key) {
   int action = getGameAction(key);
   map.keyPressed(action, false);
 }
コード例 #2
0
ファイル: PlayCanvas.java プロジェクト: julioa/javame-samples
 protected void keyRepeated(int key) {
   int action = getGameAction(key);
   map.keyPressed(action, true);
 }