1 /* $Id: normal-shot.h,v 1.7 2004/07/06 02:50:33 oohara Exp $ */
2 
3 #ifndef __DANGEN_NORMAL_SHOT_H__
4 #define __DANGEN_NORMAL_SHOT_H__
5 
6 #include "tenm_object.h"
7 
8 tenm_object *normal_shot_angle_new(double x, double y, double speed, int theta,
9                                    int color);
10 tenm_object *normal_shot_point_new(double x, double y, double speed,
11                              double target_x, double target_y,
12                              int color);
13 tenm_object *normal_shot_new(double x, double y,
14                              double speed_x, double speed_y,
15                              int color, int life, int immortal_time);
16 
17 #endif /* not __DANGEN_NORMAL_SHOT_H__ */
18