pokemon-cmd/java/Test.java
EpicKnarvik97 fc74f55c85 Added more object types.
Added Map and Structure. Created a working map int Test.java, but Structures are still not implemented.
2017-11-29 15:50:43 +01:00

8 lines
228 B
Java

public class Test {
public static void main(String[] args) {
Tile wall = new Tile('#', true, "NONE");
Tile empty = new Tile('+', false, "NONE");
Map map = new Map(50, 5, 5, 5, empty, wall);
System.out.println(map);
}
}