Add DeployToSteamOS and Procedural Dungeon Generation addons

This commit is contained in:
2024-08-22 16:51:05 -07:00
parent 6a6be038e8
commit 5c81398c83
108 changed files with 17406 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
public class SettingsFile
{
public enum UploadMethods
{
Differential,
Incremental,
CleanReplace
}
public string BuildPath { get; set; } = "";
public string StartParameters { get; set; } = "";
public UploadMethods UploadMethod { get; set; } = UploadMethods.Differential;
}