This commit is contained in:
Alessandro Autiero
2024-06-02 15:12:42 +02:00
parent efb508bd0c
commit 5d89a603d7
63 changed files with 1146 additions and 1379 deletions

View File

@@ -8,6 +8,7 @@ class GameInstance {
final int? eacPid;
bool hosting;
bool launched;
bool movedToVirtualDesktop;
bool tokenError;
GameInstance? child;
@@ -18,7 +19,7 @@ class GameInstance {
required this.eacPid,
required this.hosting,
required this.child
}): tokenError = false, launched = false;
}): tokenError = false, launched = false, movedToVirtualDesktop = false;
void kill() {
Process.killPid(gamePid, ProcessSignal.sigabrt);
@@ -42,4 +43,4 @@ class GameInstance {
return false;
}
}
}