mirror of
https://github.com/moparisthebest/MoparClassic
synced 2024-11-17 06:35:13 -05:00
34 lines
543 B
Java
34 lines
543 B
Java
package org.moparscape.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;
|
|
}
|
|
|
|
}
|