voleur/bullet.h

16 lines
240 B
C
Raw Normal View History

2024-09-30 14:24:11 +02:00
#ifndef BULLET_H
#define BULLET_H
typedef enum BulletType {
BULLET_SHURIKEN,
BULLET_COUNT,
} BulletType;
void bullet_load();
void bullet_spawn(BulletType type, Vector2 pos, float angle);
2024-09-30 14:43:39 +02:00
void draw_bullets();
2024-09-30 14:24:11 +02:00
#endif // BULLET_H