123456789101112131415161718192021222324252627282930313233343536 |
-
-
- #ifndef _UTILS_PCX_H_
- #define _UTILS_PCX_H_
-
- #include "TextureManager.h"
-
-
- int pcxCheck(const char *filename);
-
-
- int pcxLoad(const char *filename, unsigned char **image, unsigned int *width, unsigned int *height, TextureManager::ColorMode *mode, unsigned int *bpp);
-
- #endif
|