コード例 #1
0
ファイル: XInput.cs プロジェクト: shloak/Hunt-The-Wumpus
 public static extern int XInputGetState
 (
     int dwUserIndex,  
     ref XInputState pState
 );
コード例 #2
0
ファイル: XInput.cs プロジェクト: shloak/Hunt-The-Wumpus
 public static extern int XInputGetState
 (
     int dwUserIndex,  // [in] Index of the gamer associated with the device
     ref XInputState pState        // [out] Receives the current state
 );
コード例 #3
0
ファイル: XInputState.cs プロジェクト: shloak/Hunt-The-Wumpus
 public void Copy(XInputState source)
 {
     PacketNumber = source.PacketNumber;
     Gamepad.Copy(source.Gamepad);
 }