14 lines
247 B
C#
14 lines
247 B
C#
namespace rail
|
|
{
|
|
public class NotifyRoomMemberChange : EventBase
|
|
{
|
|
public RailID changer_id = new RailID();
|
|
|
|
public RailID id_for_making_change = new RailID();
|
|
|
|
public EnumRoomMemberActionStatus state_change;
|
|
|
|
public ulong room_id;
|
|
}
|
|
}
|