Files
MidnightLib/common/src/main/java/eu/midnightdust/hats/web/PlayerHatData.java
Motschen 0c23fa4f53 Port to Architectury
Yes, that also means Forge!
And yes, this was pain.
And no, the file size has not increased much!
2022-10-30 23:49:58 +01:00

14 lines
226 B
Java
Executable File

package eu.midnightdust.hats.web;
public class PlayerHatData {
private final String hat;
public PlayerHatData(String hat) {
this.hat = hat;
}
public String getHatType() {
return hat;
}
}