Add optional contractor to Element attribute

This commit is contained in:
Stone-Red-Code
2021-07-24 13:50:20 +02:00
parent 83a6339a46
commit 883cc3a2fb
48 changed files with 40 additions and 28 deletions
@@ -14,5 +14,14 @@ namespace DesktopMagicPluginAPI.Inputs
Name = name;
OrderIndex = orderIndex;
}
public ElementAttribute(int orderIndex = 0)
{
OrderIndex = orderIndex;
}
public ElementAttribute()
{
}
}
}