From 6a0565944376426ded71849df09527da077dfc94 Mon Sep 17 00:00:00 2001 From: "Tomas Chvatal (scarabeus)" Date: Thu, 23 Oct 2008 00:09:21 +0200 Subject: Ups forget to fix header files. --- src/client/image.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/client/image.h') diff --git a/src/client/image.h b/src/client/image.h index c154ff0..5b637b2 100755 --- a/src/client/image.h +++ b/src/client/image.h @@ -25,18 +25,19 @@ typedef struct image_struct typedef struct image_struct { - int w; - int h; - SDL_Surface *image; + int w; + int h; + SDL_Surface *image; } image_t; extern bool_t isImageInicialized(); extern void initImageData(); -extern image_t* addImageData(char *file, int alpha, char *name, char *group); -extern image_t* getImage(char *group, char *name); +extern image_t *addImageData(char *file, int alpha, char *name, char *group); +extern image_t *getImage(char *group, char *name); extern void delImage(char *group, char *name); extern void delAllImageInGroup(char *group); -extern void drawImage(image_t *p, int x,int y, int px, int py, int w, int h); +extern void drawImage(image_t * p, int x, int y, int px, int py, int w, + int h); extern void quitImageData(); #endif -- cgit v1.2.3