initial commit
This commit is contained in:
18
src/main/java/cc/fascinated/player/impl/Skin.java
Normal file
18
src/main/java/cc/fascinated/player/impl/Skin.java
Normal file
@ -0,0 +1,18 @@
|
||||
package cc.fascinated.player.impl;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
@Getter @AllArgsConstructor
|
||||
public class Skin {
|
||||
|
||||
/**
|
||||
* The URL of the skin
|
||||
*/
|
||||
private final String url;
|
||||
|
||||
/**
|
||||
* The model of the skin
|
||||
*/
|
||||
private final SkinType model;
|
||||
}
|
Reference in New Issue
Block a user