X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=globals.h;h=c98f1f8d61ed5043859a474204b74bd5dad8e206;hp=7f4731484b6559efad703e565867c04ed04a13aa;hb=1f56b653a3e8284f1d9164758d54b93e611af954;hpb=fe549d406b589b1c3db83aeea28c911292a5968e diff --git a/globals.h b/globals.h index 7f47314..c98f1f8 100644 --- a/globals.h +++ b/globals.h @@ -5,25 +5,6 @@ #include #include "font.h" -struct bangdots { - // Bang dots have the same colour as shield dots. - // Bang dots get darker as they age. - // Some are coloured the same as the ex-ship. - float x,y,dx,dy; - Uint16 c; // when zero, use heatcolor[bangdotlife] - float life; // When reduced to 0, set active = 0 - int active; - float decay;// Amount by which to reduce life each time dot is drawn -}; -struct enginedots { - // Engine dots stream out the back of the ship, getting darker as they go. - int active; - float x,y,dx,dy; - // The life of an engine dot - // is a number starting at between 0 and 50 and counting backward. - float life; // When reduced to 0, set active = 0 -}; - // ************************************* VARS // SDL_Surface global variables extern SDL_Surface @@ -40,10 +21,6 @@ extern SDL_Surface extern font *g_font; -// Structure global variables -extern struct enginedots edot[MAXENGINEDOTS], *dotptr; -extern struct bangdots bdot[MAXBANGDOTS], *bdotptr; - // Other global variables extern char topline[1024]; extern char *initerror;