Files
LuaCsForBarotraumaEP/Barotrauma/BarotraumaServer/Source/Items/Components/Machines/Controller.cs
T
2019-09-20 20:11:18 +03:00

13 lines
291 B
C#

using Barotrauma.Networking;
namespace Barotrauma.Items.Components
{
partial class Controller : ItemComponent, IServerSerializable
{
public void ServerWrite(IWriteMessage msg, Client c, object[] extraData = null)
{
msg.Write(state);
}
}
}