/* $LICENSE$ */ package org.jouvieje.Fmod.Extras; public class Console { public static char readChar() { throw new RuntimeException("readChar not implemented"); } public static String readString() { throw new RuntimeException("readString not implemented"); } public static String readString(String string) { throw new RuntimeException("readString not implemented"); } public static int readInt(String string) { throw new RuntimeException("readString not implemented"); } }