2016-03-30 15:42:36 +02:00
|
|
|
package com.gamingmesh.jobs.container;
|
|
|
|
|
|
|
|
public class BoostMultiplier {
|
|
|
|
double money;
|
|
|
|
double points;
|
|
|
|
double exp;
|
|
|
|
|
|
|
|
public BoostMultiplier(double money, double points, double exp) {
|
|
|
|
this.money = money;
|
|
|
|
this.points = points;
|
|
|
|
this.exp = exp;
|
|
|
|
}
|
|
|
|
|
2016-04-03 16:22:44 +02:00
|
|
|
public double getMoneyBoost() {
|
2016-03-30 15:42:36 +02:00
|
|
|
return this.money;
|
|
|
|
}
|
|
|
|
|
2016-04-03 16:22:44 +02:00
|
|
|
public double getPointsBoost() {
|
2016-03-30 15:42:36 +02:00
|
|
|
return this.points;
|
|
|
|
}
|
|
|
|
|
2016-04-03 16:22:44 +02:00
|
|
|
public double getExpBoost() {
|
2016-03-30 15:42:36 +02:00
|
|
|
return this.exp;
|
|
|
|
}
|
|
|
|
}
|