BugVault/lib/SessionData.dart

9 lines
312 B
Dart

import 'package:libac_dart/nbt/impl/CompoundTag.dart';
class SessionData {
static var g_bDarkMode = true;
static CompoundTag g_nbtConfiguration = CompoundTag();
/// This flag is only used by the server to indicate if a packet has demanded the server shut down.
static var g_bShutdownPending = false;
}