diff options
Diffstat (limited to 'Impostor-dev/src/Impostor.Api/Events/Game/Player/IPlayerChatEvent.cs')
-rw-r--r-- | Impostor-dev/src/Impostor.Api/Events/Game/Player/IPlayerChatEvent.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Impostor-dev/src/Impostor.Api/Events/Game/Player/IPlayerChatEvent.cs b/Impostor-dev/src/Impostor.Api/Events/Game/Player/IPlayerChatEvent.cs new file mode 100644 index 0000000..52efe96 --- /dev/null +++ b/Impostor-dev/src/Impostor.Api/Events/Game/Player/IPlayerChatEvent.cs @@ -0,0 +1,10 @@ +namespace Impostor.Api.Events.Player +{ + public interface IPlayerChatEvent : IPlayerEvent + { + /// <summary> + /// Gets the message sent by the player. + /// </summary> + string Message { get; } + } +} |