Skip to content
Permalink
af42b10cc5
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
49 lines (40 sloc) 1.03 KB
import java.awt.*;
import javax.swing.*;
public class Main extends JFrame{
public static void main(String[] args) {
JFrame frame = new JFrame("Tower Defense Refactor Mock GUI");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(640,640+23);
int num = 6;
int[][] nodes = new int[num][2];
nodes[0][0] = 1;
nodes[0][1] = 3;
nodes[1][0] = 16;
nodes[1][1] = 3;
nodes[2][0] = 16;
nodes[2][1] = 9;
nodes[3][0] = 4;
nodes[3][1] = 9;
nodes[4][0] = 4;
nodes[4][1] = 15;
nodes[5][0] = 18;
nodes[5][1] = 15;
/*nodes[6][0] = 18;
nodes[6][1] = 13;
nodes[7][0] = 11;
nodes[7][1] = 13;
nodes[8][0] = 11;
nodes[8][1] = 1;*/
MockGui mg = new MockGui(640,640,32, num, nodes);
MapTowerDefense map = new MapTowerDefense(100, num, nodes, mg);
mg.setMap(map);
frame.add(mg);
frame.setVisible(true);
//StatGui sg = new StatGui(100, 640);
//sg.setLocation(640, 0);
//frame.add(sg);
//map.getTF().createBasicTower(14, 8);
map.createMinion(MinionTypes.BASIC);
mg.step();
}
}