aboutsummaryrefslogtreecommitdiff
path: root/src/levels/level1.c
blob: f473c851dbc6ee9de526ee8ab4eb8e3d09bb4af5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "level1.h"
#include "game.h"
#include "world.h"
#include "entity.h"

void initLevel1(Game * game, Levels * levels) {
}

void closelevel1(Levels * levels) {
}

bool updateLevel1(Game * game, Levels * levels) {
    return false;
}