Skip to content

CS-Task6 #16

@Ptysiek

Description

@Ptysiek

Create a new class Game that will manage the entire gameplay.
It has to have public method startGame().

In the end, the main.cpp file should look like this:

#include "Game.hpp"

constexpr size_t start_money = 1'000;
constexpr size_t game_days = 100;
constexpr size_t final_goal = 2'000;

int main() {
    Game game(start_money, game_days, final_goal);
    game.startGame();

    return 0;
}

https://kursy.coders.school/szkolenie.html?tid=30&lid=396

Metadata

Metadata

Assignees

Labels

MainTaskTask from CodersSchool

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions