mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
18 lines
414 B
C#
18 lines
414 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "ItemStateCriteriaConsumable", Namespace = "")]
|
|
[Serializable]
|
|
public class ItemStateCriteriaConsumable : ItemStateCriteria
|
|
{
|
|
[XmlElement(ElementName = "ItemID")]
|
|
public int ItemID;
|
|
|
|
[XmlElement(ElementName = "ConsumeUses")]
|
|
public bool ConsumeUses;
|
|
|
|
[XmlElement(ElementName = "Amount")]
|
|
public int Amount;
|
|
}
|