/* wave.h - Header for wave.c - Don Yang (uguu.org) 09/01/98: InitWave UninitWave GetWaveParticle GetAllWaveParticles TranslateWave 09/09/98: MorphWave GetWaveParticle deleted */ /* Constants */ #define ALLOW_WAVE_ROTATION #define WAVE_TIME 300 #define WAVE_ERR 60 #define AMP_RATIO 8 #define PER_RATIO 2 #define SHF_RATIO 4 /* Functions */ void GetAllWaveParticles(void); int InitWave(void); void MorphWave(int frame, int target); void TranslateWave(void); void UninitWave(void);