blob: 21413ac3ea16f3501a8259f2c1452dcb0c6eb450 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "game.h"
#include "entity.h"
#ifndef SAMANTHAS_SPOT_H
#define SAMANTHAS_SPOT_H
#define SAMANTHAS_SPOT_SIZE 10
#define SAMANTHAS_SPOT_HEIGHT 5
void initSamanthasSpot(Entity* entity);
void updateSamanthasSpot(Entity* entity, Game* game);
#endif
|