mirror of
https://mirror.ghproxy.com/https://github.com/StarCitizenToolBox/app.git
synced 2024-12-23 20:33:42 +08:00
9 lines
327 B
Dart
9 lines
327 B
Dart
class ConstConf {
|
|
static const String appVersion = "2.11.0 Beta";
|
|
static const int appVersionCode = 46;
|
|
static const String appVersionDate = "2024-03-30";
|
|
static const gameChannels = ["LIVE", "PTU", "EPTU", "TECH-PREVIEW"];
|
|
static const isMSE =
|
|
String.fromEnvironment("MSE", defaultValue: "false") == "true";
|
|
}
|