This commit is contained in:
Masséna Fezard | Nounouille 2022-01-14 22:09:54 +01:00
parent ba3824bac4
commit 22d03e26b6
4 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
#pragma once
#include "type.h"
struct Bullet {
struct Vec2 pos;
int v;
int active;
};
struct Bullet_table {
int n;
struct Bullet *bullets;
};
void bullet_table_init(void);
void bullet_table_update(void);
void bullet_table_draw(int timer);
void bullet_destroy(struct Bullet *bullet);
void bullet_fire(int x, int y, int v);
int bullet_nb(void);

View File

View File

View File