-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathf_wipe.h
46 lines (32 loc) · 833 Bytes
/
f_wipe.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// f_wipe.h : Mission start screen wipe/melt, special effects.
#ifndef __F_WIPE_H__
#define __F_WIPE_H__
//--------------------------------------------------------------------------
// SCREEN WIPE PACKAGE
//--------------------------------------------------------------------------
enum
{
// simple gradual pixel change for 8-bit only
wipe_ColorXForm,
// weird screen melt
wipe_Melt,
wipe_NUMWIPES
};
int wipe_StartScreen
( int x,
int y,
int width,
int height );
int wipe_EndScreen
( int x,
int y,
int width,
int height );
int wipe_ScreenWipe
( int wipeno,
int x,
int y,
int width,
int height,
int ticks );
#endif