using System.Collections; using System.Collections.Generic; using UnityEngine; namespace BITKit.Steamwork { public interface ISteamInventoryItemDef:IAddressable { ulong Id { get; } int DefId { get; } string Type { get; } } }