Fikser importeringer

This commit is contained in:
Kristian Knarvik 2020-02-23 00:02:03 +01:00
parent c561df4a66
commit 9b76bcb579
2 changed files with 14 additions and 3 deletions

View File

@ -1,7 +1,14 @@
package inf112.fiasko.roborally.utility; package inf112.fiasko.roborally.utility;
import inf112.fiasko.roborally.element_properties.*; import inf112.fiasko.roborally.element_properties.Direction;
import inf112.fiasko.roborally.objects.*; import inf112.fiasko.roborally.element_properties.TileType;
import inf112.fiasko.roborally.element_properties.WallType;
import inf112.fiasko.roborally.objects.Board;
import inf112.fiasko.roborally.objects.IGrid;
import inf112.fiasko.roborally.objects.Robot;
import inf112.fiasko.roborally.objects.Tile;
import inf112.fiasko.roborally.objects.Wall;
import inf112.fiasko.roborally.objects.Grid;
import java.io.*; import java.io.*;
import java.util.List; import java.util.List;

View File

@ -1,6 +1,10 @@
package inf112.fiasko.roborally.objects; package inf112.fiasko.roborally.objects;
import inf112.fiasko.roborally.element_properties.*; import inf112.fiasko.roborally.element_properties.Direction;
import inf112.fiasko.roborally.element_properties.Position;
import inf112.fiasko.roborally.element_properties.RobotID;
import inf112.fiasko.roborally.element_properties.TileType;
import inf112.fiasko.roborally.element_properties.WallType;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;