mirror of
https://github.com/TeamMidnightDust/MidnightLib.git
synced 2025-12-16 01:15:08 +01:00
Yes, that also means Forge! And yes, this was pain. And no, the file size has not increased much!
14 lines
226 B
Java
Executable File
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;
|
|
}
|
|
}
|