blob: 55e694ee5a65d216e936ce576fe4007d21b7b1f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
package de.hysky.skyblocker.injected;
import org.jetbrains.annotations.NotNull;
import de.hysky.skyblocker.skyblock.item.PetInfo;
public interface SkyblockerStack {
@NotNull
default String getSkyblockId() {
return "";
}
@NotNull
default String getSkyblockApiId() {
return "";
}
@NotNull
default String getNeuName() {
return "";
}
@NotNull
default String getUuid() {
return "";
}
@NotNull
default PetInfo getPetInfo() {
return PetInfo.EMPTY;
}
}
|