Files
BarotraumaModServer/LocalMods/More Level Content/CSharp/Shared/Config/DebugConfig.cs
2026-06-09 00:42:10 +03:00

23 lines
437 BLFS
C#
Executable File

using Barotrauma;
public struct ClientConfig
{
public bool Verbose;
public bool Internal;
public static ClientConfig GetDefault()
{
return new ClientConfig()
{
Verbose = false,
Internal = false
};
}
public override string ToString() =>
$"\n-Debug Config-\n" +
$"Verbose: {Verbose}\n" +
$"Internal: {Internal}\n";
}