Move part of the input module to Cryville.Input.

This commit is contained in:
2023-05-05 00:40:51 +08:00
parent b143fb49ce
commit 0b2ea3ddbc
62 changed files with 1417 additions and 1602 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);
}