#ifndef LEVEL_H_ #define LEVEL_H_ #include #include "tga.h" typedef GLuint Block; const Block BLOCK_EMPTY; const Block BLOCK_WALL01; Block get_block(GLushort x, GLushort y); void set_image(TGAimage* image); #endif