initial commit

This commit is contained in:
2026-08-10 19:37:10 +02:00
commit 3701761539
21 changed files with 1646 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
namespace HatariZipLauncher
{
// Configuration POCOs separated into their own file for clarity
public class AppHatariConfig
{
public string? Executable { get; set; }
public string? ConfigFile { get; set; }
public string? ArgsTemplate { get; set; }
}
public class AppConfig
{
public string? RootDirectory { get; set; }
public string? PatchDirectory { get; set; }
public AppHatariConfig? Hatari { get; set; }
}
}