Mario Bros. Log

Mario Bros. Log is a C++ program that takes in a text file of user-specified enemy and level numbers, writing a complete simulated game of Mario turn-by-turn to a log.txt file. This was completed individually fall 2023 for my Data Structures and Algorithms course. The program implements a 3D character array world containing levels, bosses, enemies, and coins, each turn invoking different status effects and actions for Mario that determine the outcome of the game. Personal focuses of this project included dynamic allocation, memory management, debugging, and time management.