letzplay/src/main/java/letzplay/core/GameLoop.java

20 lines
322 B
Java
Raw Normal View History

2021-04-11 14:54:28 +02:00
package letzplay.core;
import java.io.IOException;
public interface GameLoop {
GameEngine game = GameEngine.getInstance();
void init();
void input(String trigger);
void update();
Output output();
void save() throws IOException;
void load() throws IOException, ClassNotFoundException;
}