mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 08:25:20 +01:00
21 lines
249 B
C#
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;
|
|
}
|
|
}
|
|
}
|