Using the provided code provided here you have a base Dear IMGUI project for Windows and macOS. There is a basic CMakefile in this project that includes the necessary files to create an application that brings up just a basic screen.
You must add a logging system to this code that you will be using THROUGHOUT the quarter. This logging system should do two things.
It should be able to log to a Dear IMGUI debug console It should also log its output to a file.
For the submission, make a branch of this repo and submit a new GitHub URL
Application of Logger: Logger works as a logger for ImGui which is used for debugging. Information is logged to both the window "Game Log" and to the file debug.txt Use functions LogInfo, LogWarning, and LogError to call general information, and LogGameEvent for game specific information