9
0
mirror of https://github.com/Xiao-MoMi/Custom-Fishing.git synced 2025-12-29 03:49:07 +00:00
Files
Custom-Fishing/src/main/java/net/momirealms/customfishing/bar/Difficulty.java
Xiao-MoMi 24704f9105 1.0
2022-08-03 18:18:38 +08:00

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;
}
}