mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
15 lines
342 B
Java
15 lines
342 B
Java
package com.virtualapplications.play;
|
|
|
|
public class InputManager
|
|
{
|
|
static
|
|
{
|
|
System.loadLibrary("Play");
|
|
}
|
|
|
|
public static native void setButtonState(int button, boolean pressed);
|
|
|
|
public static native void setAxisState(int button, float value);
|
|
|
|
public static native String getVirtualPadItems(float screenWidth, float screenHeight);
|
|
}
|