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