Chat/velocity/src/main/java/com/alttd/velocitychat/events/GlobalAdminChatEvent.java
2021-12-11 19:35:35 +01:00

28 lines
609 B
Java
Executable File

package com.alttd.velocitychat.events;
import com.velocitypowered.api.command.CommandSource;
public class GlobalAdminChatEvent {
private final CommandSource sender;
private final String uuid;
private final String message;
public GlobalAdminChatEvent(CommandSource sender, String uuid, String message) {
this.sender = sender;
this.uuid = uuid;
this.message = message;
}
public CommandSource getSender() {
return sender;
}
public String getUuid() {
return uuid;
}
public String getMessage() {
return message;
}
}