C++ Object-oriented console-application game: This is a simple console-based Pacman game implemented in C++ with a focus on object-oriented programming principles. It is designed to be a beginner-friendly project that allows you to understand the basics of C++ and object-oriented concepts. In the game we meet: -Pacman character that moves through a maze. -Ghost enemies that move randomly or toward the Pacman. -"Fruits" that shown as numbers - if the Pacman collects them, the number they hold is being added to the game points. -Simple scoring system. -Console-based user interface. Before running the game, make sure you change the c++ language Standard to: ISO C++17 Standard (/std:c++17)