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

34 lines
473 B
Java

package org.moparscape.msc.gs.model.definition.skill;
/**
* The definition wrapper for fish
*/
public class ObjectFishDef {
/**
* 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;
}
}