17 lines
403 B
C++
17 lines
403 B
C++
//
|
|
// Created by gustavomiranda on 27/09/24.
|
|
//
|
|
|
|
#include "Game.h"
|
|
|
|
void Game::setup() {
|
|
Region *ghetto = new Region;
|
|
Region *centralPark = new Region;
|
|
Region *manhattan = new Region;
|
|
Region *conneyIsland = new Region;
|
|
Region *brooklyn = new Region;
|
|
regionManager = new RegionManager(ghetto,centralPark,manhattan,
|
|
conneyIsland,brooklyn);
|
|
|
|
}
|