14 lines
193 B
C#
14 lines
193 B
C#
namespace rail
|
|
{
|
|
public class RoomDataReceived : EventBase
|
|
{
|
|
public uint data_len;
|
|
|
|
public RailID remote_peer = new RailID();
|
|
|
|
public uint message_type;
|
|
|
|
public string data_buf;
|
|
}
|
|
}
|