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;
public class BoardActiveScreen implements Screen, InputProcessor {
final RoboRallyLauncher roboRallyLauncher;
private final RoboRallyLauncher roboRallyLauncher;
private final OrthographicCamera camera;
private IDrawableGame debugGame;

View File

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

View File

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