7 lines
185 B
C#
7 lines
185 B
C#
namespace Wonderking.Game.Data.Item;
|
|
|
|
public struct ItemOptions
|
|
{
|
|
public ICollection<byte> OptionIDs { get; internal set; }
|
|
public bool OptionAvailable { get; internal set; }
|
|
}
|