12 lines
296 B
Plaintext
12 lines
296 B
Plaintext
package ${package};
|
|
|
|
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");
|
|
}
|
|
} |