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
-
badcount
-
-
bulletcount
-
-
level
-
-
lives
-
-
score
-
-
scorpioncount
-
-
DarnSpiders()
-
-
getAppletInfo()
-
-
init()
-
-
keyDown(Event, int)
- This is where the code is to allow the user to interact
with the game using the keyboard.
-
paint(Graphics)
-
-
run()
-
-
start()
-
-
stop()
-
-
update(Graphics)
-
score
public static int score
lives
public static int lives
badcount
public static int badcount
level
public static int level
bulletcount
public static int bulletcount
scorpioncount
public static int scorpioncount
DarnSpiders
public DarnSpiders()
getAppletInfo
public String getAppletInfo()
- Overrides:
- getAppletInfo in class Applet
init
public void init()
- Overrides:
- init in class Applet
start
public void start()
- Overrides:
- start in class Applet
stop
public void stop()
- Overrides:
- stop in class Applet
run
public void run()
update
public void update(Graphics g)
- Overrides:
- update in class Container
paint
public void paint(Graphics g)
- Overrides:
- paint in class Container
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