12 lines
371 B
C#
12 lines
371 B
C#
public static class GameConfig
|
|
{
|
|
// Toggle detailed logging for debugging. Keep false in production for performance.
|
|
public static bool verboseLogs = false;
|
|
|
|
// Toggle skill effect logging.
|
|
public static bool skillDebugMode = true;
|
|
|
|
// When true, gameplay will not automatically read JSON beatmaps on Start.
|
|
public static bool testMode = false;
|
|
}
|