PIR_BIM/src/Application1/Main.java
2020-05-08 09:06:39 -04:00

32 lines
518 B
Java

package Application1;
import java.awt.Desktop;
import java.io.File;
import java.io.IOException;
public class Main {
public static void main(String[] args) {
Fenetre fenetre = new Fenetre();
Desktop Starter = Desktop.getDesktop();
File file = new File("C:\\Users\\nunes\\Desktop\\Travail\\PIR\\Software\\Glovepie\\WiimoteScripts\\Test.PIE");
/*try {
//Starter.open(file);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
*/
}
}