📄 hud.java
字号:
/*
* Hud.java
*
* Created on 26. Dezember 2006, 15:35
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package kanjitori.graphics.hud;
import kanjitori.graphics.Thing;
/**
* All display elements in the ORTHO queue.
*
* @author Pirx
*/
public interface Hud extends Thing {
public void showDefinition(String def);
public void addSolution(String letter);
public void showBotCount(int num);
public void showHealth(int health);
public void showTeleporters(int teleporter);
public void showChange(int defChanges);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -