blob: 58a7b2c4f3097f287eb4f982840a30316d367f9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "gameCommon.h"
#include "levels.h"
#ifndef LEVEL1_H
#define LEVEL1_H
void initLevel1(Game * game, Levels * levels);
void closelevel1(Levels * levels);
bool updateLevel1(Game * game, Levels * levels);
#endif
|