#ifndef LEVEL_H #define LEVEL_H // Utilitaire de décompression de level #include typedef struct { uint8_t width; uint8_t height; uint8_t data[]; // rough data } packed_level_t; //void unpackLevel(packed_level_t const * const packed_level_t); void setLevel(int w, int l); // Configures the level void getLevelID(int w, int l, char * str); // Retruns level ID into a char [4] void mallocError(); #endif