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

11 lines
317 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;
public void initialize() throws InterruptedException;
public void render();
public void renderTopmost();
public void beforeRender(float dt);
public boolean mustBeRefreshed();
}