sodoff/src/Schema/ItemStateCriteriaConsumable.cs
hictooth 199d44f1cd create profile
works up to start of tutorial
2023-06-19 20:23:53 +01:00

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;
}