ARCed.Controls.EquipFixChangedEventArgs.EquipFixChangedEventArgs C# (CSharp) Method

EquipFixChangedEventArgs() public method

Default constructor
public EquipFixChangedEventArgs ( bool value, string propertyName ) : System
value bool Value indicating the fixed status of the slot
propertyName string Name of the RPG object property this value represents
return System
        public EquipFixChangedEventArgs(bool value, string propertyName)
        {
            this.Fixed = value;
            this.PropertyName = propertyName;
        }
EquipFixChangedEventArgs