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

#ifndef SAMANTHA_H
#define SAMANTHA_H

#define SAMANTHA_WIDTH (2.65966 / 2.0)
#define SAMANTHA_HEIGHT (3.21054 / 2.0)
#define SAMANTHA_THICKNESS (1.46845 / 2.0)
#define SAMANTHA_STATIC_SPEED 24
#define SAMANTHA_STATIC_FRAMES 4

void initSamantha(Entity* entity);
void updateSamantha(Entity* entity, Game* game);

#endif