2015-06-30 05:26:01 -04:00
|
|
|
package com.virtualapplications.play;
|
|
|
|
|
|
|
|
public class InputManager
|
|
|
|
{
|
2017-07-05 10:17:37 -04:00
|
|
|
static
|
2015-06-30 05:26:01 -04:00
|
|
|
{
|
2017-05-28 16:24:26 -04:00
|
|
|
System.loadLibrary("Play");
|
2015-06-30 05:26:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public static native void setButtonState(int button, boolean pressed);
|
2017-07-05 10:17:37 -04:00
|
|
|
|
2015-06-30 05:26:01 -04:00
|
|
|
public static native void setAxisState(int button, float value);
|
2017-07-05 10:17:37 -04:00
|
|
|
|
2015-10-31 00:13:42 -04:00
|
|
|
public static native String getVirtualPadItems(float screenWidth, float screenHeight);
|
2015-06-30 05:26:01 -04:00
|
|
|
}
|