Rearrange platform specific plugins.

This commit is contained in:
2023-09-25 10:52:16 +08:00
parent 84acb2c12d
commit 825818679c
27 changed files with 30 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
package world.cryville.input.unity.android;
final class NativeMethods {
private NativeMethods() { }
public static native void feed(int hid, int id, int action, long time, float x, float y, float z, float t);
}