feat: add direct chat support

This commit is contained in:
Anna
2022-02-01 01:52:51 -05:00
parent 60e22f58ee
commit d0bc1d974f
3 changed files with 60 additions and 13 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace ChatTwo.GameFunctions.Types;
internal sealed class ChatActivatedArgs {
internal string? AddIfNotPresent { get; init; }
internal string? Input { get; init; }
internal ChannelSwitchInfo ChannelSwitchInfo { get; }
internal TellReason? TellReason { get; init; }
internal TellTarget? TellTarget { get; init; }
internal ChatActivatedArgs(ChannelSwitchInfo channelSwitchInfo) {
this.ChannelSwitchInfo = channelSwitchInfo;
}
}