cleanup & add cape to player

This commit is contained in:
Lee
2024-04-06 04:28:32 +01:00
parent ea75eb311a
commit 50265b6228
6 changed files with 39 additions and 12 deletions

View File

@ -0,0 +1,13 @@
package cc.fascinated.player.impl;
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter @AllArgsConstructor
public class Cape {
/**
* The URL of the cape
*/
private final String url;
}