gol

Implementation of Conway's Game of Life writen in C
git clone git://git.dimitrijedobrota.com/gol.git
Log | Files | Refs | README |

game.h (233B)


1 /** 2 * @file game.h 3 * @author Dimitrije Dobrota 4 * @date 19 June 2022 5 * @brief Game interface 6 */ 7 8 #ifndef GAME_H 9 #define GAME_H 10 11 #include "window.h" 12 13 extern int width, height; 14 15 void game(int s_h, int s_w, int mode_index); 16 17 #endif