aboutsummaryrefslogtreecommitdiff
path: root/systems.h
blob: 0cc55ece56a8f932b498c8601c924c06d353e1f5 (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 sprite_system(const World* world);
void enemy_system(World* world);


#endif