blob: 5108b803aa270416f26f67fc4808dbf34440f4c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef systems_h
#define systems_h
#include "world.h"
void animation_system(World* world);
void bullet_system(World* world);
void collision_system(World* world);
void debris_system(World* world);
void enemy_system(World* world);
void spawner_system(World* world);
void sprite_system(const World* world);
#endif
|