item.java

来自「一个JAVA程序员的游戏」· Java 代码 · 共 28 行

JAVA
28
字号
/*
 * Item.java
 *
 * Created on 26. Dezember 2006, 14:52
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package kanjitori.graphics.item;

import com.jme.scene.Node;
import kanjitori.graphics.Thing;

/**
 *
 * @author Pirx
 */
public interface Item extends Thing {
    
    public enum Type {HEALTH, TELEPORT, DEF_CHANGE};
    
    public void consume();
    
    public Type getType(); 
    
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?