Create GameRunner API scaffolding

This commit is contained in:
2021-03-01 19:30:32 +01:00
parent c20bf208ac
commit a4fe85e87c
9 changed files with 116 additions and 11 deletions

View File

@@ -1,5 +1,12 @@
package ${package};
public class ${className} {
import com.bartlomiejpluta.base.api.runner.GameRunner;
import com.bartlomiejpluta.base.api.context.Context;
public class ${className} implements GameRunner {
@Override
public void init(Context context) {
throw new RuntimeException("Not implemented yet");
}
}