mirror of
https://github.com/moparisthebest/MoparClassic
synced 2024-11-15 21:55:03 -05:00
34 lines
528 B
Java
34 lines
528 B
Java
|
package msc.gs.external;
|
||
|
|
||
|
/**
|
||
|
* 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;
|
||
|
}
|
||
|
|
||
|
}
|