mystnb/src/game.h

10 lines
191 B
C

#ifndef _MYSTNB_GAME_H
#define _MYSTNB_GAME_H
#include <stdbool.h>
/* Play the level, returns whether player completed the level */
bool play_level(int level);
#endif /* _MYSTNB_GAME_H */