/astroids

My take on the classic arcade game in C (i had no idea)

Primary LanguageCThe UnlicenseUnlicense

Astroids

Ubuntu Application build on Windows (MinGW) Application build on macOS

This is the repository for my take on the classic arcade game Astroids built in C using GLFW and OpenGL.

Building

Requirements

Steps

  1. Clone this repository: git clone --recursive https://github.com/stickyPiston/astroids.git && cd astroids.

  2. For Windows users: Open the astroids folder in Visual Studio. Press play to build and run the application.

    For Unix users: run CMake: cmake -S . -B build. This will create a build directory. Go into that folder (cd build) and run make. This will create an executable called Astroids inside the build folder. Run that (./Astroids) and enjoy the application.