blob: 6bf4edc3e53f560f1e2da2e75caaf369b5cc4ee7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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);
#endif
|