vJoyInterfaceWrap.vJoy.SetDiscPov C# (CSharp) Method

SetDiscPov() public method

public SetDiscPov ( Int32 Value, UInt32 rID, uint nPov ) : bool
Value Int32
rID UInt32
nPov uint
return bool
        public bool SetDiscPov(Int32 Value, UInt32 rID, uint nPov) { return _SetDiscPov(Value, rID, nPov); }
        public bool SetContPov(Int32 Value, UInt32 rID, uint nPov) { return _SetContPov(Value, rID, nPov); }

Usage Example

コード例 #1
0
ファイル: InputHandler.cs プロジェクト: qwertyuu/TwitchPlays
 private bool Right(uint player, vJoy playa)
 {
     return playa.SetDiscPov(1, player, 1);
 }
All Usage Examples Of vJoyInterfaceWrap.vJoy::SetDiscPov