Add camera support in :API Context

This commit is contained in:
2021-03-02 21:23:14 +01:00
parent ed0f9ac0c5
commit 64d290503c
7 changed files with 44 additions and 6 deletions

View File

@@ -9,16 +9,21 @@ public class ${className} implements MapHandler {
@Override
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");
}
@Override
public void postRender(float windowWidth, float windowHeight) {
}
}