feat(battle-node): EngineIoFrame parse/encode for EIO3 packets

This commit is contained in:
gamer147
2026-05-31 21:34:11 -04:00
parent a786599416
commit 6c6664f011
4 changed files with 106 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
namespace SVSim.BattleNode.Wire;
public enum EngineIoPacketType
{
Open = 0,
Close = 1,
Ping = 2,
Pong = 3,
Message = 4,
Upgrade = 5,
Noop = 6,
}