15 lines
236 B
C#
15 lines
236 B
C#
|
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; }
|
||
|
}
|
||
|
|
||
|
}
|