Skip to content
Snippets Groups Projects
Commit fa970bba authored by Haakon Gunleiksrud's avatar Haakon Gunleiksrud
Browse files

#13 Changed visibility modifier for the fields in the Sprite class

parent 098e744c
No related branches found
No related tags found
1 merge request!8Resolve "ViewTournament-, ViewHighscore-, CreateJoinTournament-, State Classes"
...@@ -4,10 +4,10 @@ import com.badlogic.gdx.math.Vector3; ...@@ -4,10 +4,10 @@ import com.badlogic.gdx.math.Vector3;
public abstract class Sprite { public abstract class Sprite {
private Vector3 position; protected Vector3 position;
private int width; protected int width;
private int height; protected int height;
private Object bounds; protected Object bounds;
public abstract void reset(); public abstract void reset();
public abstract Object report(); public abstract Object report();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment