18 lines
606 B
C#
18 lines
606 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BizHawk.Client.Common
|
|
{
|
|
// Represents the defaults used in defctrl.json
|
|
public class DefaultControls
|
|
{
|
|
public Dictionary<string, Dictionary<string, string>> AllTrollers { get; set; }
|
|
= new Dictionary<string, Dictionary<string, string>>();
|
|
|
|
public Dictionary<string, Dictionary<string, string>> AllTrollersAutoFire { get; set; }
|
|
= new Dictionary<string, Dictionary<string, string>>();
|
|
|
|
public Dictionary<string, Dictionary<string, AnalogBind>> AllTrollersAnalog { get; set; }
|
|
= new Dictionary<string, Dictionary<string, AnalogBind>>();
|
|
}
|
|
}
|