13 lines
288 B
C#
13 lines
288 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Cryville.Crtr.Config {
|
|
public class RulesetConfig {
|
|
public Dictionary<string, InputConfigEntry> inputs
|
|
= new Dictionary<string, InputConfigEntry>();
|
|
}
|
|
public class InputConfigEntry {
|
|
public string handler;
|
|
public int type;
|
|
}
|
|
}
|