mirror of
https://github.com/TeamMidnightDust/MidnightLib.git
synced 2025-12-16 17:25:09 +01:00
Port to Architectury
Yes, that also means Forge! And yes, this was pain. And no, the file size has not increased much!
This commit is contained in:
13
common/src/main/java/eu/midnightdust/hats/web/PlayerHatData.java
Executable file
13
common/src/main/java/eu/midnightdust/hats/web/PlayerHatData.java
Executable file
@@ -0,0 +1,13 @@
|
||||
package eu.midnightdust.hats.web;
|
||||
|
||||
public class PlayerHatData {
|
||||
private final String hat;
|
||||
|
||||
public PlayerHatData(String hat) {
|
||||
this.hat = hat;
|
||||
}
|
||||
|
||||
public String getHatType() {
|
||||
return hat;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user