コード例 #1
0
ファイル: GameController.cs プロジェクト: plunch/sdlsharp
 public GameController(IntPtr h, bool owned) : base(IntPtr.Zero, owned)
 {
     SetHandle(h);
     Axes    = new GameControllerAxes(this);
     Buttons = new GameControllerButtons(this);
 }
コード例 #2
0
ファイル: GameController.cs プロジェクト: plunch/sdlsharp
 protected GameController() : base(IntPtr.Zero, true)
 {
     Axes    = new GameControllerAxes(this);
     Buttons = new GameControllerButtons(this);
 }