package dasherJava.core.output; public interface KeyboardOutput { void pressKey(int keycode); void typeKey(int keycode); void releaseKey(int keycode); }