Add NFC Maker and Jetpack Joyride apps

This commit is contained in:
Willy-JL
2023-07-04 23:57:01 +02:00
parent 02943dd1db
commit 2ada7b3bbb
65 changed files with 2347 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#ifndef PARTICLE_H
#define PARTICLE_H
#include "point.h"
#include "scientist.h"
#include "barry.h"
#define PARTICLES_MAX 50
#define PARTICLE_VELOCITY 2
typedef struct {
POINT point;
} PARTICLE;
void particle_tick(PARTICLE* const particles, SCIENTIST* const scientists);
void spawn_random_particles(PARTICLE* const particles, BARRY* const barry);
void draw_particles(const PARTICLE* particles, Canvas* const canvas);
#endif // PARTICLE_H