feat(battle-node): NetworkBattleUri / EmitCategory enums and MsgEnvelope record

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
gamer147
2026-05-31 21:50:17 -04:00
parent 6ff4f70f1a
commit 383044dd8f
5 changed files with 228 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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,
}