Files
Reboot-Launcher/common/lib/src/game/game_dll.dart
Alessandro Autiero 4ea73d17c7 Refactored GUI
2025-08-10 19:43:57 +01:00

11 lines
176 B
Dart

enum GameDll {
console,
auth,
gameServer,
memoryLeak
}
extension InjectableDllVersionAware on GameDll {
bool get isVersionDependent => this == GameDll.gameServer;
}