This repository has been archived by the owner on Jul 15, 2022. It is now read-only.
forked from SpigotMC/BungeeCord
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
983 additions
and
341 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
api/src/main/java/net/md_5/bungee/api/SkinConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package net.md_5.bungee.api; | ||
|
||
/** | ||
* Represents a player's skin settings. These settings can be changed by the | ||
* player under Skin Configuration in the Options menu. | ||
*/ | ||
public interface SkinConfiguration | ||
{ | ||
|
||
boolean hasCape(); | ||
|
||
boolean hasJacket(); | ||
|
||
boolean hasLeftSleeve(); | ||
|
||
boolean hasRightSleeve(); | ||
|
||
boolean hasLeftPants(); | ||
|
||
boolean hasRightPants(); | ||
|
||
boolean hasHat(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,5 +22,5 @@ public class Objective | |
/** | ||
* Type; integer or hearts | ||
*/ | ||
private final String type; | ||
private String type; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.