namespace Minecraft.Server.FourKit.Command;
///
/// Represents something that can send commands and receive messages.
///
public interface CommandSender
{
///
/// Sends this sender a message.
///
/// Message to be displayed.
void sendMessage(string message);
///
/// Sends this sender multiple messages.
///
/// An array of messages to be displayed.
void sendMessage(string[] messages);
///
/// Gets the name of this command sender.
///
/// Name of the sender.
string getName();
}