mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2025-07-14 16:28:03 +00:00
14 lines
244 B
Java
14 lines
244 B
Java
package com.imaginarycode.minecraft.redisbungee.api.events;
|
|
|
|
import java.util.UUID;
|
|
|
|
public interface IPlayerChangedServerNetworkEvent extends RedisBungeeEvent {
|
|
|
|
UUID getUuid();
|
|
|
|
String getServer();
|
|
|
|
String getPreviousServer();
|
|
|
|
}
|