Esempio n. 1
0
    public gameAssembled(int _h, int _w)
    {
        gameRunning = false;
        clicks      = 0;

        gArea    = new gamearea(_h, _w); //TODO rename all these 3!
        reporter = new reportMethods(gArea);
        reader   = new userInput(this);
    }
Esempio n. 2
0
 public reportMethods(gamearea gameDataArea)        //I hope I am doing this right
 {
     gameData = gameDataArea;
 }