Initial Commit

This commit is contained in:
2023-08-02 14:01:07 +02:00
commit 631551259b
32 changed files with 4830 additions and 0 deletions

30
model/Instance.cs Normal file
View File

@@ -0,0 +1,30 @@

/**
* Author: HypherionSA
* Instance Manifest Model
**/
namespace WolfLauncher.model
{
public class Instance
{
// General Instance info like Game Version, Name, etc.
public string name { get; set; }
public string gameVersion { get; set; }
public string loader { get; set; }
public bool localInstall { get; set; }
public Settings settings { get; set; }
public class Settings
{
// Java and Screen Settings
public int maxRam { get; set; }
public int minRam { get; set; }
public string screenWidth { get; set; }
public string screenHeight { get; set; }
public string javaPath { get; set; }
public string javaArgs { get; set; }
}
}
}