Class DarnSpiders

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----java.applet.Applet
                                   |
                                   +----DarnSpiders

public class DarnSpiders
extends Applet
implements Runnable

Variable Index

 o badcount
 o bulletcount
 o level
 o lives
 o score
 o scorpioncount

Constructor Index

 o DarnSpiders()

Method Index

 o getAppletInfo()
 o init()
 o keyDown(Event, int)
This is where the code is to allow the user to interact with the game using the keyboard.
 o paint(Graphics)
 o run()
 o start()
 o stop()
 o update(Graphics)

Variables

 o score
 public static int score
 o lives
 public static int lives
 o badcount
 public static int badcount
 o level
 public static int level
 o bulletcount
 public static int bulletcount
 o scorpioncount
 public static int scorpioncount

Constructors

 o DarnSpiders
 public DarnSpiders()

Methods

 o getAppletInfo
 public String getAppletInfo()
Overrides:
getAppletInfo in class Applet
 o init
 public void init()
Overrides:
init in class Applet
 o start
 public void start()
Overrides:
start in class Applet
 o stop
 public void stop()
Overrides:
stop in class Applet
 o run
 public void run()
 o update
 public void update(Graphics g)
Overrides:
update in class Container
 o paint
 public void paint(Graphics g)
Overrides:
paint in class Container
 o keyDown
 public boolean keyDown(Event evt,
                        int key)
This is where the code is to allow the user to interact with the game using the keyboard.

Overrides:
keyDown in class Component