MoparClassic/GameServer/src/org/moparscape/msc/gs/model/definition/skill/ObjectFishDef.java

34 lines
473 B
Java
Raw Normal View History

2012-01-13 18:08:16 -05:00
package org.moparscape.msc.gs.model.definition.skill;
/**
* The definition wrapper for fish
*/
public class ObjectFishDef {
2012-01-13 18:08:16 -05:00
/**
* How much experience this fish should give
*/
public int exp;
/**
* The id of the fish
*/
public int fishId;
/**
* The fishing level required to fish
*/
public int requiredLevel;
public int getExp() {
return exp;
}
public int getId() {
return fishId;
}
public int getReqLevel() {
return requiredLevel;
}
}