Hey guys
I'm trying to export my game from eclipse to an executable jar. When I launch it in eclipse it works perfectly. When I export it nothing happens and when I launch it through console i get this:
http://img697.imageshack.us/img697/899/errordc.png
and I have main class
public class main {
public static void main (String[] args){
BlueHarvest bh = new BlueHarvest();
}
}
also my manifest points towards this class.