mirror of
https://github.com/inf112-v20/Fiasko.git
synced 2025-06-25 02:34:43 +02: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:
@ -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;
|
Reference in New Issue
Block a user