?? groundadapter.java
字號:
package cn.itcast.tetris.listener;
import cn.itcast.tetris.entities.Ground;
/**
* Ground 事件適配器
*
* @version 1.0, 01/01/08
*
* @author 湯陽光
*
*/
public class GroundAdapter implements GroundListener {
public void beforeDeleteFullLine(Ground ground, int lineNum) {
// TODO Auto-generated method stub
}
public void fullLineDeleted(Ground ground, int deletedLineCount) {
// TODO Auto-generated method stub
}
public void groundIsFull(Ground ground) {
// TODO Auto-generated method stub
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -