00001 /* '='='=' '@' '='='='='='='='='=' '@' '='='='='='='='='=' '@' '='='='| */ 00002 /* ='='=' '@'@' '='='='='='='='=' '@'@' '='='='='='='='=' '@'@' '='='=| */ 00003 /* '='=' '@':'@' '='='='='='='=' '@':'@' '='='='='='='=' '@':'@' '='='| */ 00004 /* ='=' '@':':'@' '='='='='='=' '@':':'@' '='='='='='=' '@':':'@' '='=| */ 00005 /* '=' '@':':':'@' '='='='='=' '@':':':'@' '='='='='=' '@':':':'@' '='| */ 00006 /* =' '@':':':':'@' '='='='=' '@':':':':'@' '='='='=' '@':':':':'@' '=| */ 00007 /* ' '@':' '@' '| */ 00008 /* '@' 3rd Year Project - ROY SCHESTOWITZ - 2002 @' | */ 00009 /* '@ @'| */ 00010 /* @':':':':':':':':'@' ' '@':':':':':':':':'@' ' '@':':':':':':':':'@| */ 00011 /* ':':':':':':':':':'@' '@':':':':':':':':':'@' '@':':':':':':':':':'| */ 00012 /* :':':':':':':':':':'@'@':':':':':':':':':':'@'@':':':':':':':':':':| */ 00013 /* ':':':': : :':':':':'@':':':':': : :':':':':'@':':':':': : :':':':'| */ 00014 /* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */ 00015 /* Name: drawing.h */ 00016 /* Version: 0.6.6 */ 00017 /* Date: 12/2/2003 */ 00018 /* */ 00019 /* Data structures for drawing.c */ 00020 /* */ 00021 /* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */ 00022 00023 00024 00025 /************************************************************************/ 00026 /********************** INCLUDES **************************************/ 00027 /************************************************************************/ 00028 00029 00030 /************************************************************************/ 00031 /********************** DEFINES ***************************************/ 00032 /************************************************************************/ 00033 00034 00035 /************************************************************************/ 00036 /********************** DATA STRUCTURES *******************************/ 00037 /************************************************************************/ 00038 00039 unsigned char *imagehair = NULL; /* Holds images */ 00040 unsigned char *imagecloud = NULL; 00041 unsigned char *imagebrick = NULL; 00042 unsigned char *imagegrass = NULL; 00043 00044 int hhair, 00045 whair; /* Height and width of image */ 00046 int hcloud, 00047 wcloud; 00048 int hbrick, 00049 wbrick; 00050 int hgrass, 00051 wgrass; 00052 00053 00054 00055 /************************************************************************/ 00056 /********************** PROTOTYPES ************************************/ 00057 /************************************************************************/ 00058 00059 void drawString ( void *font, float x, float y, char *str ); 00060 void draw_scene ( void ); 00061 00062 00063 /* */ 00064 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ 00065 /* end of drawing.h */ 00066 /************************************************************************/