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

void initLevel6(Game * game, Levels * levels) {
    // Add player.
    addEntryToWorld(&game->world, game, (WorldEntry){ENTITY_ANTIFA, (Vector3){0.0, 0.0, 0.0}, QuaternionIdentity()});
}

void closelevel6(Levels * levels) {
}

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