mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-24 11:16:13 -05:00
12 lines
247 B
C#
12 lines
247 B
C#
namespace NHSE.Core
|
|
{
|
|
public interface IHeldItem
|
|
{
|
|
ushort ItemId { get; set; }
|
|
byte Flags0 { get; set; }
|
|
byte Flags1 { get; set; }
|
|
ushort Count { get; set; }
|
|
ushort UseCount { get; set; }
|
|
}
|
|
}
|