I’m on Windows 11 using Visual Studio Community 2022 if that matters.
I want to create a command line app in C++ but I want it to be separate from Windows Command Prompt. I want it to be fullscreen and the only way to exit would be to type a particular command. And when users do type the exit command, they should not be taken to Windows Command Prompt, but the window itself should close.
It would also preferably use my own custom font, and my specified font size.
I tried using PDCurses because that’s what people say works, but when I tried importing it (with #include <pdcurses>
) it didn’t work. Even though I had all the files on my computer.