#include <GL/glut.h>

// assume witdh/height = 512
#define SIZE 512
#define NUM_TEXTURES 6

extern const char *tfiles[NUM_TEXTURES];
extern int loaded_textures[2][NUM_TEXTURES];

GLuint load_texture(const char filename, bool alpha);
void load_all_textures();
