SubServers-2/SubServers.Host/src/net/ME1312/SubServers/Host/Network/Packet/PacketOutExRequestQueue.java
ME1312 75b9b688cc Rewrite SubData API for JSON dependancy changes
This commit removes the org.JSON library where alternatives are already provided (Bungee & Bukkit provide Gson). This change was made to improve compatability with BungeeCord plugins and reduce file sizes.

This means big changes to the SubData API, which heavily relied on org.JSON. Now we submit our data through YAMLSection to be converted and sent over the network.
2018-04-14 21:53:51 -04:00

28 lines
590 B
Java

package net.ME1312.SubServers.Host.Network.Packet;
import net.ME1312.SubServers.Host.Library.Config.YAMLSection;
import net.ME1312.SubServers.Host.Library.Version.Version;
import net.ME1312.SubServers.Host.Network.PacketOut;
/**
* Queue Request Packet
*/
public class PacketOutExRequestQueue implements PacketOut {
/**
* New PacketOutExRequestQueue
*/
public PacketOutExRequestQueue() {
}
@Override
public YAMLSection generate() {
return null;
}
@Override
public Version getVersion() {
return new Version("2.11.0a");
}
}