Refactored GUI

This commit is contained in:
Alessandro Autiero
2025-08-10 19:43:57 +01:00
parent 52abf5eb95
commit 4ea73d17c7
75 changed files with 2020 additions and 2011 deletions

View File

@@ -0,0 +1,10 @@
enum GameDll {
console,
auth,
gameServer,
memoryLeak
}
extension InjectableDllVersionAware on GameDll {
bool get isVersionDependent => this == GameDll.gameServer;
}