// Decompiled by DJ v3.0.0.63 Copyright 2002 Atanas Neshkov  Date: 11/09/2002 18:13:10
// Home Page : http://members.fortunecity.com/neshkov/dj.html  - Check often for new version!
// Decompiler options: packimports(3) 
// Source File Name:   SpaceImpactApplet.java

import java.applet.Applet;
import java.awt.*;
import java.net.URL;

public class SpaceImpactApplet extends Applet
{

    public SpaceImpactApplet()
    {
    }

    public void start()
    {
        java.io.InputStream inputstream = null;
        String s = getParameter("CONFIG_FILE");
        if(s != null)
            try
            {
                URL url = new URL(s);
                inputstream = url.openStream();
            }
            catch(Exception _ex) { }
        game = new SpaceImpact(inputstream, this);
        setLayout(new BorderLayout());
        add("Center", game);
        setVisible(true);
    }

    public void stop()
    {
        game = null;
    }

    private SpaceImpact game;
}