#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); void draw_bullets(Camera2D *cam); #endif // BULLET_H