Upload New File

parent 1822406a
import java.util.Vector;
public class GameProgram {
public currentState;
public currentLevel;
/**
*
* @element-type Instruction
*/
public Vector shows;
/**
*
* @element-type GameLevel
*/
public Vector selects;
public Vector myGameState;
public GameState myGameState;
/**
*
* @element-type GameObject
*/
public Vector displays;
public Inventory displays;
public PlayerCharacter displays;
public void startLevel( GameLevel) {
}
public void endLevel() {
}
public void displayObject( GameObject) {
}
public void hideObject( GameObject) {
}
public void displayPlayerCharacter( PlayerCharacter) {
}
public void showInstruction( Instruction) {
}
public void displayProgress( GameState) {
}
public void displayInventory( Inventory) {
}
public void hideInventory( Inventory) {
}
public void displayResult() {
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment