private void nMapSize_ValueChanged(IntegerUpDown sender) { if (nMapWidth != null) { Map.Width = nMapWidth.NumValue; } if (nMapWidth != null) { Map.Height = nMapHeight.NumValue; } mapEditor.CheckSelection(); }
private void iValue_ValueChanged(IntegerUpDown sender) { Value.Value = iValue.NumValue; }
private void iActionPoints_ValueChanged(IntegerUpDown sender) { Project.Current.Config.CharacterConfig.ActionPoints = iActionPoints.NumValue; }
private void iMovementCost_ValueChanged(IntegerUpDown sender) { Project.Current.Config.CharacterConfig.MovementActionPoints = iMovementCost.NumValue; }
private void iAbilityPoints_ValueChanged(IntegerUpDown sender) { Project.Current.Config.CharacterConfig.StartingAbilityPoints = iAbilityPoints.NumValue; }