pls work first try

This commit is contained in:
Lee
2024-04-17 21:06:43 +01:00
commit ecde2bb2a7
30 changed files with 1258 additions and 0 deletions

View File

@ -0,0 +1,75 @@
package xyz.mcutils.models.server;
import lombok.Getter;
import lombok.ToString;
@Getter
public class CachedBedrockMinecraftServer extends MinecraftServer {
/**
* The unique ID of this server.
*/
private String id;
/**
* The edition of this server.
*/
private Edition edition;
/**
* The version information of this server.
*/
private Version version;
/**
* The gamemode of this server.
*/
private GameMode gamemode;
/**
* The edition of a Bedrock server.
*/
@Getter
public enum Edition {
/**
* Minecraft: Pocket Edition.
*/
MCPE,
/**
* Minecraft: Education Edition.
*/
MCEE
}
/**
* Version information for a server.
*/
@Getter @ToString
public static class Version {
/**
* The protocol version of the server.
*/
private int protocol;
/**
* The version name of the server.
*/
private String name;
}
/**
* The gamemode of a server.
*/
@Getter @ToString
public static class GameMode {
/**
* The name of this gamemode.
*/
private String name;
/**
* The numeric of this gamemode.
*/
private int numericId;
}
}