public ProController(LeftJoycon left, RightJoycon right) : base(null) // super doesn't matter in this case? { this.left = left; this.right = right; }
public ProController(NintendoController controller) : base(controller) { left = new LeftJoycon(controller); right = new RightJoycon(controller); }