mirror of
https://github.com/Zrips/Jobs.git
synced 2024-12-01 23:13:48 +01:00
34 lines
607 B
Java
34 lines
607 B
Java
|
package com.gamingmesh.jobs.container;
|
||
|
|
||
|
public class BoostCounter {
|
||
|
BoostType type;
|
||
|
double boost;
|
||
|
Long calculatedon;
|
||
|
|
||
|
public BoostCounter(BoostType type, double boost, Long calculatedon) {
|
||
|
this.type = type;
|
||
|
this.boost = boost;
|
||
|
this.calculatedon = calculatedon;
|
||
|
}
|
||
|
|
||
|
public BoostType getType() {
|
||
|
return this.type;
|
||
|
}
|
||
|
|
||
|
public long getTime() {
|
||
|
return this.calculatedon;
|
||
|
}
|
||
|
|
||
|
public double getBoost() {
|
||
|
return this.boost;
|
||
|
}
|
||
|
|
||
|
public void setTime(long time) {
|
||
|
this.calculatedon = time;
|
||
|
}
|
||
|
|
||
|
public void setBoost(double boost) {
|
||
|
this.boost = boost;
|
||
|
}
|
||
|
}
|