add auto download feature

This commit is contained in:
Jakob 2024-02-23 20:30:40 +01:00
parent 3f925ee17a
commit b9e7aac55f
7 changed files with 45 additions and 3 deletions

View file

@ -91,5 +91,15 @@ namespace EnvyUpdate
Debug.LogToFile("INFO Switched to EXE directory.");
}
private void chkAutodl_Checked(object sender, RoutedEventArgs e)
{
GlobalVars.autoDownload = true;
}
private void chkAutodl_Unchecked(object sender, RoutedEventArgs e)
{
GlobalVars.autoDownload = false;
}
}
}