pitmap.h 211 B

12345678910111213
  1. #ifndef PITMAP_H
  2. #define PITMAP_H
  3. #include <stdint.h>
  4. typedef struct {
  5. uint32_t* frame_buffer;
  6. int width, height;
  7. } PM_image;
  8. PM_image* PM_load_image(char* filename, unsigned char debug_mode);
  9. #endif