11 lines
247 B
C
11 lines
247 B
C
![]() |
/************************/
|
||
|
/* pattern.h */
|
||
|
/************************/
|
||
|
#ifndef _PATTERN_
|
||
|
#define _PATTERN_
|
||
|
int pattern( ACTION *a0, int anim_spd, int loop_flg );
|
||
|
#define ANM_NOMAL_SPD 0
|
||
|
#define ANM_LOOP 0
|
||
|
#define ANM_NO_LOOP 1
|
||
|
#endif
|