mirror of
https://github.com/Xiao-MoMi/Custom-Fishing.git
synced 2025-12-29 03:49:07 +00:00
13 lines
218 B
Java
13 lines
218 B
Java
package net.momirealms.customfishing.bar;
|
|
|
|
public record Difficulty(int timer, int speed) {
|
|
|
|
public int getTimer() {
|
|
return this.timer;
|
|
}
|
|
|
|
public int getSpeed() {
|
|
return this.speed;
|
|
}
|
|
}
|