This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * ASCII Mario Ultimate Scroller - A terminal-based side-scrolling platformer | |
| * Built by Tetsuo and Grok 4.1! | |
| */ | |
| #define _POSIX_C_SOURCE 200809L | |
| #include <ncurses.h> | |
| #include <signal.h> | |
| #include <stdbool.h> |
OlderNewer