]> 4ch.mooo.com Git - 16.git/blobdiff - src/lib/bitmap.h
pngwen help!!!!
[16.git] / src / lib / bitmap.h
index 17bb0d94ae189de14e921d60f83792bb2849ba22..f1b126e5f28b9be9f8b67cba978fe3cd270359d6 100644 (file)
@@ -3,22 +3,23 @@
  */\r
 #ifndef BITMAP_H\r
 #define BITMAP_H
-#include <malloc.h>\r
-#include "src/lib/types.h"\r
+#include "src/lib/types.h"
+#include "src/lib/lib_head.h"
+\r
 typedef struct {\r
-    byte *data;
-    word width;\r
-    word height;\r
-    byte *palette;
-    word offset;
+       byte *data;
+       word width;\r
+       word height;\r
+       byte *palette;
+       word offset;
 } bitmap_t;\r
 \r
 typedef struct {\r
-    byte **data;\r
-    word ntiles;   /* the number of tiles */\r
-    word twidth;   /* width of the tiles */\r
-    word theight;  /* height of the tiles */\r
-    byte *palette; /* palette for the tile set */\r
+       byte **data;\r
+       word ntiles;   /* the number of tiles */\r
+       word twidth;   /* width of the tiles */\r
+       word theight;  /* height of the tiles */\r
+       byte *palette; /* palette for the tile set */\r
 } tileset_t;\r
 \r
 bitmap_t bitmapLoadPcx(char *filename);\r