Files
SVSimServer/SVSim.BattleNode/Protocol/EmitCategory.cs
2026-05-31 21:50:17 -04:00

12 lines
209 B
C#

namespace SVSim.BattleNode.Protocol;
/// <summary>The "cat" field on the msg envelope.</summary>
public enum EmitCategory
{
Battle = 1,
Matching = 2,
Room = 3,
Watch = 11,
General = 99,
}