예제 #1
0
파일: Api.cs 프로젝트: RCkanki/FreePIE
 public static bool Update(int id, VJoyState state)
 {
     return VJoy_UpdateJoyState(id, ref state);
 }
예제 #2
0
파일: Api.cs 프로젝트: RCkanki/FreePIE
 private static extern bool VJoy_UpdateJoyState(int id, ref VJoyState joyState);
예제 #3
0
 public void SetState(Func<VJoyState, VJoyState> setState)
 {
     State = setState(State);
 }