13 lines
303 B
C#
13 lines
303 B
C#
using Barotrauma.Networking;
|
|
|
|
namespace Barotrauma.Items.Components
|
|
{
|
|
partial class ConnectionSelectorComponent : ItemComponent
|
|
{
|
|
public void ClientEventRead(IReadMessage msg, float sendingTime)
|
|
{
|
|
SelectedConnection = msg.ReadRangedInteger(0, 255);
|
|
}
|
|
}
|
|
}
|