19 lines
430 B
C#
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;
|
|
}
|
|
}
|
|
}
|