/********************
	kn_screc.h
 ********************/
#ifndef _KN_SCREC_H_
#define _KN_SCREC_H_

/*******************************************************
	DEFINE
*******************************************************/
/* シーケンス */
#define SCREC_SEQ_INIT	0
#define SCREC_SEQ_APPR	1
#define SCREC_SEQ_WAIT	2
#define SCREC_SEQ_DISAP	3
#define SCREC_SEQ_EXIT	4

/* スクリーンの幅 */
#define SCREC_SCR_WD			264
/* 初期位置 */
#define SCREC_SCR_INIT_RX		320
#define SCREC_SCR_INIT_LX		(0 - SCREC_SCR_WD)
/* 静止位置 */
#define SCREC_SCR_STOP_RX		20
/* 移動速度 */
#define SCREC_SCR_VX				20

/*******************************************************************************
	VARIABLE
*******************************************************************************/

/*******************************************************************************
	FUNCTION
*******************************************************************************/
extern Gfx 		*makeMainGlistScRec( Gfx *gp );
extern void 	initMainGlistScRec( void );
extern void 	moveMainScRec( void );

#endif
