mirror of
https://github.com/thepigeongenerator/breakout_clone.git
synced 2025-12-17 06:15:46 +01:00
10 lines
211 B
C
10 lines
211 B
C
#include <stdbool.h>
|
|
#include <SDL2/SDL.h>
|
|
#include "level.h"
|
|
|
|
//prepares the level to be in a playable state
|
|
void level_init(Level* level) {}
|
|
|
|
//updates the level
|
|
void level_update(Level* level, bool* keys) {}
|