Files
WaifuCellar/Attributes.cs
Samuele Lorefice abfde63278 Added base parts
2024-12-31 03:05:17 +01:00

18 lines
545 B
C#

namespace WaifuCellar;
[AttributeUsage(AttributeTargets.Property)]
public class TraitAttribute : Attribute {}
[AttributeUsage(AttributeTargets.Property)]
public class AttributeAttribute : Attribute{}
[AttributeUsage(AttributeTargets.Property)]
public class StateAttribute : Attribute{}
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class PartSpecificAttribute(Part part) : Attribute {
public Part Part { get; set; } = part;
}
[AttributeUsage(AttributeTargets.Property)]
public class SkillAttribute : Attribute {}