My line sb.init(this); always comes back with a "non static variable this cannot be referenced from a static context." I cant figure out why.
package asteroidgame;
import blobmx.BlobGUI;
import blobmx.SandBox;
import blobmx.SandBoxMode;
import java.util.Random;
public class AsteroidGame implements BlobGUI{
private static final Random random = new Random();
public static void main(String[] args) {
AsteroidGame();
}
public static void AsteroidGame(){
SandBox sb = new SandBox();
sb.setSandBoxMode(SandBoxMode.FLOW);
sb.setFrameRate(66);
sb.init(this);
}