MidnightLib v0.1.0 for 21w08b

This commit is contained in:
Motschen
2021-02-28 12:36:43 +01:00
parent 5928257fab
commit a4be637128
40 changed files with 1495 additions and 1 deletions

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