EpicKnarvik97
fc74f55c85
Added Map and Structure. Created a working map int Test.java, but Structures are still not implemented.
8 lines
228 B
Java
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);
|
|
}
|
|
} |