Files
BH3/Assets/Plugins/Assembly-CSharp-firstpass/MoleMole/MPRecvPacketContainer.cs
2025-08-13 09:26:42 +08:00

21 lines
249 B
C#

using FlatBuffers;
namespace MoleMole
{
public struct MPRecvPacketContainer
{
public uint runtimeID;
public int channel;
public int fromPeerID;
public Table packet;
public T As<T>() where T : Table
{
return (T)packet;
}
}
}