mirror of
https://mirror.ghproxy.com/https://github.com/StarCitizenToolBox/app.git
synced 2024-12-23 15:53:47 +08:00
9 lines
331 B
Dart
9 lines
331 B
Dart
class ConstConf {
|
|
static const String appVersion = "2.12.2";
|
|
static const int appVersionCode = 56;
|
|
static const String appVersionDate = "2024-6-28";
|
|
static const gameChannels = ["LIVE", "PTU", "EPTU", "TECH-PREVIEW", "HOTFIX"];
|
|
static const isMSE =
|
|
String.fromEnvironment("MSE", defaultValue: "false") == "true";
|
|
}
|