Ejemplo n.º 1
0
 public GameController(IntPtr h, bool owned) : base(IntPtr.Zero, owned)
 {
     SetHandle(h);
     Axes    = new GameControllerAxes(this);
     Buttons = new GameControllerButtons(this);
 }
Ejemplo n.º 2
0
 protected GameController() : base(IntPtr.Zero, true)
 {
     Axes    = new GameControllerAxes(this);
     Buttons = new GameControllerButtons(this);
 }