package com.loohp.limbo.server.packets; import java.util.Map; public class Packet { private static Map> HandshakeIn; private static Map> StatusIn; private static Map, Integer> StatusOut; private static Map> LoginIn; private static Map, Integer> LoginOut; private static Map> PlayIn; private static Map, Integer> PlayOut; public static Map> getHandshakeIn() { return HandshakeIn; } public static void setHandshakeIn(Map> handshakeIn) { HandshakeIn = handshakeIn; } public static Map> getStatusIn() { return StatusIn; } public static void setStatusIn(Map> statusIn) { StatusIn = statusIn; } public static Map, Integer> getStatusOut() { return StatusOut; } public static void setStatusOut(Map, Integer> statusOut) { StatusOut = statusOut; } public static Map> getLoginIn() { return LoginIn; } public static void setLoginIn(Map> loginIn) { LoginIn = loginIn; } public static Map, Integer> getLoginOut() { return LoginOut; } public static void setLoginOut(Map, Integer> loginOut) { LoginOut = loginOut; } public static Map> getPlayIn() { return PlayIn; } public static void setPlayIn(Map> playIn) { PlayIn = playIn; } public static Map, Integer> getPlayOut() { return PlayOut; } public static void setPlayOut(Map, Integer> playOut) { PlayOut = playOut; } }