11 lines
140 B
C#
11 lines
140 B
C#
namespace WorldOfPeacecraft
|
|
{
|
|
public interface IChatMessage
|
|
{
|
|
string GetMessage();
|
|
|
|
string GetSender();
|
|
|
|
bool IsSenderPlayer();
|
|
}
|
|
} |