chore: initial commit
This commit is contained in:
Executable
+17
@@ -0,0 +1,17 @@
|
||||
namespace ChatTwo.Code;
|
||||
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Design", "CA1028:Enum Storage should be Int32")]
|
||||
[Flags]
|
||||
internal enum ChatSource : ushort {
|
||||
Self = 2,
|
||||
PartyMember = 4,
|
||||
AllianceMember = 8,
|
||||
Other = 16,
|
||||
EngagedEnemy = 32,
|
||||
UnengagedEnemy = 64,
|
||||
FriendlyNpc = 128,
|
||||
SelfPet = 256,
|
||||
PartyPet = 512,
|
||||
AlliancePet = 1024,
|
||||
OtherPet = 2048,
|
||||
}
|
||||
Reference in New Issue
Block a user