blob: d70e99fd806ad4e4c9bc7a9cd3b412b7d0696794 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include "game.h"
#include "entity.h"
#ifndef JOHNS_STORE_H
#define JOHNS_STORE_H
void initJohnsStore(Entity* entity);
void updateJohnsStore(Entity* entity, Game* game);
void closeJohnsStore(Entity* entity);
#endif
|