Replace custom Vector with JOML's Vector2* in :API
This commit is contained in:
@@ -1,12 +1,24 @@
|
||||
package ${package};
|
||||
|
||||
import com.bartlomiejpluta.base.api.map.MapHandler;
|
||||
import com.bartlomiejpluta.base.api.map.GameMap;
|
||||
import com.bartlomiejpluta.base.api.context.Context;
|
||||
import com.bartlomiejpluta.base.api.input.Keyboard;
|
||||
|
||||
public class ${className} implements MapHandler {
|
||||
|
||||
@Override
|
||||
public void init(Context context) {
|
||||
public void init(Context context, GameMap map) {
|
||||
throw new RuntimeException("Not implemented yet");
|
||||
}
|
||||
|
||||
@Override
|
||||
void input(Keyboard keyboard) {
|
||||
throw new RuntimeException("Not implemented yet");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void update(Context context, GameMap map, float dt) {
|
||||
throw new RuntimeException("Not implemented yet");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user