jexer/examples/MyApplication.java
Kevin Lamonte 68ee64d06f wip ttable
2019-07-28 08:55:09 -05:00

18 lines
438 B
Java

import jexer.TApplication;
public class MyApplication extends TApplication {
public MyApplication() throws Exception {
super(BackendType.XTERM);
// Create standard menus for Tool, File, and Window.
addToolMenu();
addFileMenu();
addWindowMenu();
}
public static void main(String [] args) throws Exception {
MyApplication app = new MyApplication();
app.run();
}
}