BITKit/Src/UnityPluginsSupport/Steamwork/ISteamInventoryItemDef.cs

15 lines
236 B
C#
Raw Normal View History

2023-11-06 01:17:23 +08:00
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; }
}
}