blob: 672e704da42ba2ca1192f12cde8e14181346030c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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 enemy_system(World* world);
void sprite_system(const World* world);
void debris_system(World* world);
#endif
|