All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.lanterna.gui2.BasicWindow Maven / Gradle / Ivy

There is a newer version: 3.2.0-alpha1
Show newest version
package com.googlecode.lanterna.gui2;

/**
 * Simple AbstractWindow implementation that you can use with extending to build a Text GUI window
 * @author Martin
 */
public class BasicWindow extends AbstractWindow {

    public BasicWindow() {
        super();
    }

    public BasicWindow(String title) {
        super(title);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy