feat: handle tells

This commit is contained in:
Anna
2022-01-29 00:43:51 -05:00
parent d844b000e5
commit 027a9946d7
4 changed files with 96 additions and 24 deletions
@@ -3,5 +3,6 @@ namespace ChatTwo.GameFunctions.Types;
internal enum TellReason {
Direct = 0,
PartyFinder = 1,
Reply = 2,
Friend = 3,
}
+15
View File
@@ -0,0 +1,15 @@
namespace ChatTwo.GameFunctions.Types;
internal sealed class TellTarget {
internal string Name { get; }
internal ushort World { get; }
internal ulong ContentId { get; }
internal TellReason Reason { get; }
internal TellTarget(string name, ushort world, ulong contentId, TellReason reason) {
this.Name = name;
this.World = world;
this.ContentId = contentId;
this.Reason = reason;
}
}