-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unit4.~h
18 lines (15 loc) · 892 Bytes
/
Unit4.~h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//---------------------------------------------------------------------------
#ifndef Unit4H
#define Unit4H
//---------------------------------------------------------------------------
extern void DrawImage( int xx, int yy, LPAN_IMAGE imageobject );
extern void DrawFlipImage( int xx, int yy, LPAN_IMAGE imageobject );
extern void DrawAlphaImage( int xx, int yy, LPAN_IMAGE imageobject );
extern void DrawFlipAlphaImage( int xx, int yy, LPAN_IMAGE imageobject );
extern void DrawColorImage( int xx, int yy, LPAN_IMAGE imageobject, WORD color );
extern void DrawFlipColorImage( int xx, int yy, LPAN_IMAGE imageobject, WORD color );
extern void DrawOtherImage( int xx, int yy, LPAN_IMAGE imageobject, int puttype );
extern void DrawOtherFlipImage( int xx, int yy, LPAN_IMAGE imageobject, int puttype );
extern void Render_sourcescreen( void );
extern void Render_editscreen( void );
#endif