Track LocalMods as part of monolith
This commit is contained in:
23
LocalMods/More Level Content/CSharp/Shared/Config/DebugConfig.cs
Executable file
23
LocalMods/More Level Content/CSharp/Shared/Config/DebugConfig.cs
Executable file
@@ -0,0 +1,23 @@
|
||||
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";
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user