feat: handle tells
This commit is contained in:
@@ -3,5 +3,6 @@ namespace ChatTwo.GameFunctions.Types;
|
||||
internal enum TellReason {
|
||||
Direct = 0,
|
||||
PartyFinder = 1,
|
||||
Reply = 2,
|
||||
Friend = 3,
|
||||
}
|
||||
|
||||
Executable
+15
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user