blob: 630d1b488a2f494aec8591634639bd41ef9c87b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
namespace Impostor.Server.Config
{
public class DebugConfig
{
public const string Section = "Debug";
public bool GameRecorderEnabled { get; set; }
public string GameRecorderPath { get; set; }
}
}
|