13 lines
268 B
C#
13 lines
268 B
C#
using Barotrauma.Networking;
|
|
|
|
namespace Barotrauma.Items.Components
|
|
{
|
|
partial class MemoryComponent : ItemComponent
|
|
{
|
|
public void ClientEventRead(IReadMessage msg, float sendingTime)
|
|
{
|
|
Value = msg.ReadString();
|
|
}
|
|
}
|
|
}
|