libConsole/Console.java
changeset 49 77094ec383cf
child 55 2a20d0184041
new file mode 100644
--- /dev/null
+++ b/libConsole/Console.java
@@ -0,0 +1,6 @@
+public class Console {
+    public static native int getch ();
+    static {
+        System.loadLibrary ("Console");
+    }
+}