Create MapHandler API scaffolding
This commit is contained in:
12
editor/src/main/resources/java_templates/map_handler.ftl
Normal file
12
editor/src/main/resources/java_templates/map_handler.ftl
Normal file
@@ -0,0 +1,12 @@
|
||||
package ${package};
|
||||
|
||||
import com.bartlomiejpluta.base.api.map.MapHandler;
|
||||
import com.bartlomiejpluta.base.api.context.Context;
|
||||
|
||||
public class ${className} implements MapHandler {
|
||||
|
||||
@Override
|
||||
public void init(Context context) {
|
||||
throw new RuntimeException("Not implemented yet");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user