This repository has been archived on 2022-06-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
helium/src/Game.java
T
2020-05-29 15:32:24 -04:00

8 lines
152 B
Java

public interface Game {
void setup() throws Exception;
void loop() throws Exception;
void close() throws Exception;
void run() throws Exception;
}