├── .gitignore ├── CMakeLists.txt ├── IDE_USAGE.md ├── LICENSE ├── README.md ├── cmake └── sdl2 │ ├── Copyright.txt │ ├── FindSDL2.cmake │ ├── FindSDL2_gfx.cmake │ ├── FindSDL2_image.cmake │ ├── FindSDL2_mixer.cmake │ ├── FindSDL2_net.cmake │ ├── FindSDL2_ttf.cmake │ └── README.md ├── include ├── .include_dir ├── game.h ├── grid.h └── utils.h ├── rename_project.sh └── src ├── game.c ├── grid.c ├── main.c └── utils.c /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | CMakeLists.txt.* 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /IDE_USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/IDE_USAGE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/README.md -------------------------------------------------------------------------------- /cmake/sdl2/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/cmake/sdl2/Copyright.txt -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/cmake/sdl2/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_gfx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/cmake/sdl2/FindSDL2_gfx.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/cmake/sdl2/FindSDL2_image.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_mixer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/cmake/sdl2/FindSDL2_mixer.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_net.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/cmake/sdl2/FindSDL2_net.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_ttf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/cmake/sdl2/FindSDL2_ttf.cmake -------------------------------------------------------------------------------- /cmake/sdl2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/cmake/sdl2/README.md -------------------------------------------------------------------------------- /include/.include_dir: -------------------------------------------------------------------------------- 1 | This is the include directory 2 | -------------------------------------------------------------------------------- /include/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/include/game.h -------------------------------------------------------------------------------- /include/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/include/grid.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/include/utils.h -------------------------------------------------------------------------------- /rename_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/rename_project.sh -------------------------------------------------------------------------------- /src/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/src/game.c -------------------------------------------------------------------------------- /src/grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/src/grid.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/src/main.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aminosbh/falling-brick-game/HEAD/src/utils.c --------------------------------------------------------------------------------