You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
399 B
19 lines
399 B
package ui;
|
|
|
|
import ui.Options;
|
|
|
|
public interface Iface {
|
|
//private Options ifaceOpts;
|
|
|
|
//Effect: Redraw the whole interface
|
|
//Modify: This
|
|
//Require: Running thread of initialized Iface, data backend
|
|
public void redraw();
|
|
|
|
//Effect: Close all windows and disable all output
|
|
//Modify: This
|
|
//Require: Running thread of initialized Iface
|
|
public void destory();
|
|
|
|
}
|