14 lines
313 B
C#
14 lines
313 B
C#
using Barotrauma.Networking;
|
|
using System;
|
|
|
|
namespace Barotrauma
|
|
{
|
|
partial class ItemInventory : Inventory
|
|
{
|
|
public void ServerEventWrite(IWriteMessage msg, Client c, Item.InventoryStateEventData inventoryData)
|
|
{
|
|
SharedWrite(msg, inventoryData.SlotRange);
|
|
}
|
|
}
|
|
}
|