Example #1
0
 public static void Release()
 {
     StopForceFeedback();
     FFB.FreeDirectInput();
 }
Example #2
0
 public static void SetDeviceForceFeedback(int xForce, int yForce)
 {
     FFB.SetDeviceForcesXY(xForce, yForce);
     FFB.RunEffect();
 }
Example #3
0
 public static void StopForceFeedback()
 {
     FFB.StopEffect();
 }
Example #4
0
 public static void ForceFeedBackInit()
 {
     FFB.InitDirectInput(GetActiveWindow());
 }