2025-09-24 22:02:10 +02:00
|
|
|
package org.openautonomousconnection.protocol;
|
|
|
|
|
|
|
|
import dev.unlegitdqrk.unlegitlibrary.event.EventManager;
|
|
|
|
import dev.unlegitdqrk.unlegitlibrary.network.system.packets.PacketHandler;
|
|
|
|
import dev.unlegitdqrk.unlegitlibrary.utils.DefaultMethodsOverrider;
|
|
|
|
|
2025-09-29 18:20:02 +02:00
|
|
|
public class ProtocolSettings extends DefaultMethodsOverrider {
|
2025-09-24 22:02:10 +02:00
|
|
|
|
|
|
|
public String host;
|
|
|
|
public int port;
|
|
|
|
public PacketHandler packetHandler;
|
|
|
|
public EventManager eventManager;
|
|
|
|
|
|
|
|
}
|