[WIP] My own Tetris clone!
Find a file
2023-09-17 22:18:15 +02:00
include Initial commit 2023-09-17 19:36:03 +02:00
src Initial commit 2023-09-17 19:36:03 +02:00
.gitignore Export compile_commands.json for clangd 2023-09-17 22:18:15 +02:00
CMakeLists.txt Export compile_commands.json for clangd 2023-09-17 22:18:15 +02:00
LICENSE Add License, ignore build directory 2023-09-17 20:15:19 +02:00
README.md Add License, ignore build directory 2023-09-17 20:15:19 +02:00

My own Tetris Clone!

This repository houses my own implementation of Tetris. Why? To learn a bit of game programming and using OpenGL/GLFW.

Building

You need GLFW to build this project, as well as OpenGL 4.1. Compile the project using CMake:

cmake -S . -B build
cmake --build build
build/Tetris

Generating glad files

Using glad version 2, run:

glad --out-path . --api gl:core=4.1 c

License

This work is licensed under the MIR license. See LICENSE for details.