feat: add direct chat support
This commit is contained in:
+13
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user