Fikser scope for skjermer

This commit is contained in:
Kristian Knarvik 2020-03-02 19:02:29 +01:00
parent c53a4cb8d6
commit bdf60e82ce
3 changed files with 8 additions and 8 deletions

View File

@ -22,7 +22,7 @@ import inf112.fiasko.roborally.utility.TextureConverterUtil;
import java.util.List; import java.util.List;
public class BoardActiveScreen implements Screen, InputProcessor { public class BoardActiveScreen implements Screen, InputProcessor {
final RoboRallyLauncher roboRallyLauncher; private final RoboRallyLauncher roboRallyLauncher;
private final OrthographicCamera camera; private final OrthographicCamera camera;
private IDrawableGame debugGame; private IDrawableGame debugGame;

View File

@ -8,10 +8,10 @@ import com.badlogic.gdx.utils.viewport.ExtendViewport;
import com.badlogic.gdx.utils.viewport.Viewport; import com.badlogic.gdx.utils.viewport.Viewport;
public class MainMenuScreen implements Screen { public class MainMenuScreen implements Screen {
final RoboRallyLauncher roboRallyLauncher; private final RoboRallyLauncher roboRallyLauncher;
final OrthographicCamera camera; private final OrthographicCamera camera;
final Viewport viewport; private final Viewport viewport;
public MainMenuScreen(final RoboRallyLauncher roboRallyLauncher) { public MainMenuScreen(final RoboRallyLauncher roboRallyLauncher) {
this.roboRallyLauncher = roboRallyLauncher; this.roboRallyLauncher = roboRallyLauncher;

View File

@ -6,10 +6,10 @@ import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import inf112.fiasko.roborally.objects.IDrawableGame; import inf112.fiasko.roborally.objects.IDrawableGame;
public class RoboRallyLauncher extends Game { public class RoboRallyLauncher extends Game {
SpriteBatch batch; public SpriteBatch batch;
BitmapFont font; public BitmapFont font;
ScreenManager screenManager; public ScreenManager screenManager;
IDrawableGame roboRallyGame; public IDrawableGame roboRallyGame;
@Override @Override
public void create() { public void create() {