Blame view

PercTeacher/Sources/Main.java 340 Bytes
c5abccad   pfrison   PercTeacher inter...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  import javax.swing.JFrame;
  
  /* TODO list :
   *  - data to send to the arduino : do action, revert action
   */
  
  public class Main {
  	public static void main(String[] args) {
  		ActionList actionList = new ActionList();
  		
  		Interface i = new Interface(actionList);
  		i.setVisible(true);
  		i.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  	}
  }