]> git.lizzy.rs Git - shadowclad.git/blob - level.h
Generate header dependencies automatically
[shadowclad.git] / level.h
1 #ifndef LEVEL_H_
2 #define LEVEL_H_
3
4 #include <stdint.h>
5
6 #include "assimp_types.h"
7
8 #include "tga.h"
9
10 typedef uint32_t Block;
11
12 const AiScene* levelScene;
13
14 void initLevel();
15 void setImage(TgaImage* image);
16 const AiScene* importScene(const char* path);
17
18 #endif