Ok AWESOME - now this may seem like a dumb question to you but im a beginner programmer so here it is
How exactly do I extend the Joystick class - I tried it like this:
Code:
public class XBox extends Joystick {
}
but Netbeans doesn't like that
When you say
Quote:
|
include a single parameter constructor that calls the Joystick constructor
|
do you want that in the class and would that just look like
Quote:
|
Joystick stick = new Joystick();
|
THANKS for all your help!