/* squares.h - Header for squares.c - Don Yang (uguu.org) 09/05/98: InitSquares UninitSquares GetSquareParticle GetAllSquareParticles TranslateSquares 09/09/98: MorphSquares GetSquareParticle deleted */ /* Constants */ #define SQUARE_IDLE 200 #define SQUARE_TIME 100 #define SQUARE_ERR 60 #define SQUARE_RATIO1 40 #define SQUARE_RATIO2 120 #define SQUARE_MAX_LAT 60 /* Functions */ void GetAllSquareParticles(void); int InitSquares(void); void MorphSquares(int frame, int target); void TranslateSquares(void); void UninitSquares(void);