8 lines
152 B
Java
8 lines
152 B
Java
public interface Game {
|
|
void setup() throws Exception;
|
|
void loop() throws Exception;
|
|
void close() throws Exception;
|
|
void run() throws Exception;
|
|
|
|
}
|