aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities/ron.h
blob: ed0dbd2f792fdb0e915bc2c0c233b3dc0b534fc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "game.h"
#include "entity.h"
#include "shopKeeper.h"

#ifndef RON_H
#define RON_H

void initRon(Entity* entity);
void updateRon(Entity* entity, Game* game);
InteractionCommand interactWithRon(Entity* entity, Game* game,
                                   Selection selection);

#endif