I have playGame() in my BlackJack class. The whole point of it is (sry but just explaining it so I get my thoughts written down): the Game class is abstract, that abstract class has - abstract instructions, abstract welcome message, and abstract playGame. That means that every time i extend the Game class, i.e. my BlackJack class extends Game class, it will need to define these methods. So playGame has to be different with every game created.
Quote (carteblanche @ Feb 20 2013 09:13pm)

if "playGame()" doesn't exist, this shouldn't even compile. so why do you have a runtime exception? make sure it's defined in class Game
it is defined in class Game as :
Code
public abstract void playGame();
then in my BlackJack class as:
Code
@Override
public void playGame() {
...code...
}
This post was edited by shinigamiapple777 on Feb 20 2013 08:08pm