Files
Reboot-Launcher/common/lib/src/model/dll.dart
Alessandro Autiero eb7745cc4d 10.0
2024-12-09 12:14:41 +01:00

10 lines
177 B
Dart

enum InjectableDll {
console,
starfall,
reboot,
}
extension InjectableDllVersionAware on InjectableDll {
bool get isVersionDependent => this == InjectableDll.reboot;
}