2021-05-22 18:34:32 +00:00
|
|
|
package com.alttd.chat.events;
|
2021-05-02 17:40:27 +00:00
|
|
|
|
|
|
|
|
import com.velocitypowered.api.command.CommandSource;
|
|
|
|
|
|
2021-05-12 08:43:30 +00:00
|
|
|
public class GlobalAdminChatEvent {
|
2021-05-02 17:40:27 +00:00
|
|
|
private final CommandSource sender;
|
2021-07-31 01:46:50 +00:00
|
|
|
private final String uuid;
|
2021-05-02 17:40:27 +00:00
|
|
|
private final String message;
|
|
|
|
|
|
2021-07-31 01:46:50 +00:00
|
|
|
public GlobalAdminChatEvent(CommandSource sender, String uuid, String message) {
|
2021-05-02 17:40:27 +00:00
|
|
|
this.sender = sender;
|
2021-07-31 01:46:50 +00:00
|
|
|
this.uuid = uuid;
|
2021-05-02 17:40:27 +00:00
|
|
|
this.message = message;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public CommandSource getSender() {
|
|
|
|
|
return sender;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-31 01:46:50 +00:00
|
|
|
public String getUuid() {
|
|
|
|
|
return uuid;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-02 17:40:27 +00:00
|
|
|
public String getMessage() {
|
|
|
|
|
return message;
|
|
|
|
|
}
|
|
|
|
|
}
|