using System.Collections.Generic; namespace BizHawk.Client.Common { // Represents the defaults used in defctrl.json public class DefaultControls { public Dictionary> AllTrollers { get; set; } = new Dictionary>(); public Dictionary> AllTrollersAutoFire { get; set; } = new Dictionary>(); public Dictionary> AllTrollersAnalog { get; set; } = new Dictionary>(); } }