Files
crtr/Assets/Cryville/Crtr/Config/RulesetConfig.cs
2022-11-16 00:25:08 +08:00

19 lines
430 B
C#

using Newtonsoft.Json;
using System.Collections.Generic;
namespace Cryville.Crtr.Config {
public class RulesetConfig {
public Generic generic = new Generic();
public class Generic {
[JsonProperty("skin")]
public string Skin { get; set; }
}
public Dictionary<string, InputEntry> inputs
= new Dictionary<string, InputEntry>();
public class InputEntry {
public string handler;
public int type;
}
}
}