One-button pong alternative made using C++ and Raylib! Games that use just one button can be more accessible for people with mobility disabilities. I find them easier to play when my hands hurt.
I wanted to practice my C++ skills, so this is purely written in C++ using the Raylib library. The hardest part of making the game wasn't the code itself, but compiling it for the web using my Linux machine. For anyone in the future looking to do this -- it's important to build emscripten, a library made for packaging raylib programs for the web, from source, and not using apt! You can learn more about compiling Raylib applications for the web in this article about Web Assembly through Raylib.
I want to come back to this project and make the UI better - right now the game just starts on load, but I think it'd be work better if it only started once a user pressed the space bar once. For now, I'm quite proud of this project -- I made it in one day!
I would also like to implement an accessible slider where players can change the speed of the game.