c424311b24
- Plugin commands trigger the command helper window now - Fix auto translation with empty text appearing - Switch up all dalamud payload usage to ROSS if possible - Prepare 7.5 changes - Cleanup
18 lines
299 B
C#
Executable File
18 lines
299 B
C#
Executable File
namespace ChatTwo.Code;
|
|
|
|
[Flags]
|
|
public 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,
|
|
}
|