Sophie

Sophie

distrib > Mandriva > 2009.1 > x86_64 > by-pkgid > 56c615211d295fb99ff45dd87fd8e366 > files > 107

lib64allegro-devel-4.2.2-4mdv2009.1.x86_64.rpm

#ifndef BULLET_H_INCLUDED
#define BULLET_H_INCLUDED

#include "demo.h"

typedef struct BULLET {
   int x;
   int y;
   struct BULLET *next;
} BULLET;

extern BULLET *bullet_list;

BULLET *add_bullet(int x, int y);
BULLET *delete_bullet(BULLET * bullet);
void draw_bullets(BITMAP *bmp);
void move_bullets(void);

#endif