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