mirror of
https://github.com/GeyserMC/Geyser.git
synced 2025-12-26 18:29:21 +00:00
Add PlatformType enum and add bStats platform chart
This commit is contained in:
17
common/src/main/java/org/geysermc/common/PlatformType.java
Normal file
17
common/src/main/java/org/geysermc/common/PlatformType.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package org.geysermc.common;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum PlatformType {
|
||||
|
||||
BUKKIT("Bukkit"),
|
||||
BUNGEECORD("BungeeCord"),
|
||||
SPONGE("Sponge"),
|
||||
STANDALONE("Standalone"),
|
||||
VELOCITY("Velocity");
|
||||
|
||||
private String platformName;
|
||||
}
|
||||
Reference in New Issue
Block a user