RustDedicated/Rust.Platform.Common/IPlayerInventory.cs
2025-05-25 05:29:54 +09:30

11 lines
198 B
C#

using System;
using System.Collections.Generic;
public interface IPlayerInventory : IDisposable
{
IReadOnlyList<IPlayerItem> Items { get; }
bool BelongsTo(ulong userId);
byte[] Serialize();
}