⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 award.java

📁 《神州》RPG游戏引擎
💻 JAVA
字号:
/*
 * Created on 2005-9-1
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */

/**
 * @author Administrator
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class Award {
    public int type;
    public static final int TYPE_MONEY=1;
    public static final int TYPE_MAT=2;
    public static final int TYPE_SKILL=3;
    
    private Skill skill;
    private Mat mat;
    private int money;
    

    public int getType() {
        return type;
    }

    public Mat getMat() {
        return mat;
    }
    public int getMoney() {
        return money;
    }
    public Skill getSkill() {
        return skill;
    }
    public void setMat(Mat mat) {
        this.mat = mat;
    }
    public void setMoney(int money) {
        this.money = money;
    }
    public void setSkill(Skill skill) {
        this.skill = skill;
    }
    public void setType(int type) {
        this.type = type;
    }
    
}

⌨️ 快捷键说明

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