f_wipe.h (410B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 #ifndef __F_WIPE_H__ 24 #define __F_WIPE_H__ 25 26 27 28 29 30 enum 31 { 32 33 wipe_ColorXForm, 34 35 36 wipe_Melt, 37 38 wipe_NUMWIPES 39 }; 40 41 int 42 wipe_StartScreen 43 ( int x, 44 int y, 45 int width, 46 int height ); 47 48 49 int 50 wipe_EndScreen 51 ( int x, 52 int y, 53 int width, 54 int height ); 55 56 57 int 58 wipe_ScreenWipe 59 ( int wipeno, 60 int x, 61 int y, 62 int width, 63 int height, 64 int ticks ); 65 66 #endif 67 68 69 70 71