mirror of
https://github.com/inf112-v20/Fiasko.git
synced 2025-01-31 23:29:36 +01:00
Småfikser
Flytter TextureConverterUtil til Utility pakken Legger til final på noen felter i grid Fjerner en ubrukt import i DrawableObjectTest
This commit is contained in:
parent
9c5a2b60e7
commit
c561df4a66
@ -9,9 +9,9 @@ import java.util.List;
|
||||
*/
|
||||
public class Grid<K> implements IGrid<K> {
|
||||
|
||||
private int height;
|
||||
private int width;
|
||||
private List<ArrayList<K>> grid = new ArrayList<>();
|
||||
private final int height;
|
||||
private final int width;
|
||||
private final List<ArrayList<K>> grid = new ArrayList<>();
|
||||
|
||||
/**
|
||||
* Initializes an empty grid
|
||||
|
@ -1,4 +1,4 @@
|
||||
package inf112.fiasko.roborally;
|
||||
package inf112.fiasko.roborally.utility;
|
||||
|
||||
import com.badlogic.gdx.Gdx;
|
||||
import com.badlogic.gdx.graphics.Texture;
|
@ -1,6 +1,5 @@
|
||||
package inf112.fiasko.roborally.objects;
|
||||
|
||||
import inf112.fiasko.roborally.objects.DrawableObject;
|
||||
import inf112.fiasko.roborally.element_properties.GameTexture;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
Loading…
x
Reference in New Issue
Block a user