#ifndef BULLET_H #define BULLET_H typedef enum BulletType { BULLET_SHURIKEN, BULLET_MINIGUN, BULLET_COUNT, } BulletType; void bullet_load(); void bullet_spawn(BulletType type, Vector2 pos, float angle); void draw_bullets(); #endif // BULLET_H