feat: Unity creator settings

This commit is contained in:
2026-06-28 16:48:27 +07:00
parent 387fa18927
commit 27389914c6
14 changed files with 392 additions and 19 deletions
+1
View File
@@ -1,4 +1,5 @@
export interface AppConfig {
version: string;
gamePath: string | null;
detectedGamePath: string | null;
}
+8
View File
@@ -0,0 +1,8 @@
export interface UnityStatus {
hubInstalled: boolean;
editorRoot: string | null;
installedVersions: string[];
requiredVersion: string | null;
installUrl: string | null;
match: "ok" | "missing" | "no-editor" | "unknown";
}