WarpPI/src/main/java/org/warp/picalculator/gui/GraphicalInterface.java

16 lines
327 B
Java
Raw Normal View History

2018-03-17 00:09:40 +01:00
package org.warp.picalculator.gui;
public interface GraphicalInterface {
public void create() throws InterruptedException;
2018-05-12 21:18:29 +02:00
2018-03-17 00:09:40 +01:00
public void initialize() throws InterruptedException;
2018-05-12 21:18:29 +02:00
2018-03-17 00:09:40 +01:00
public void render();
2018-05-12 21:18:29 +02:00
2018-03-17 00:09:40 +01:00
public void renderTopmost();
2018-05-12 21:18:29 +02:00
2018-03-17 00:09:40 +01:00
public void beforeRender(float dt);
2018-05-12 21:18:29 +02:00
2018-03-17 00:09:40 +01:00
public boolean mustBeRefreshed();
}