summaryrefslogtreecommitdiff
path: root/include/horse.h
blob: e3e5502a81be8f9aaf11758155fda33f7fd01cb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef HORSE_H
#define HORSE_H

#include "ultra64.h"
#include "z_math.h"

struct PlayState;
struct Actor;
struct Player;

void Horse_ResetHorseData(struct PlayState* play);
void Horse_FixLakeHyliaPosition(struct PlayState* play);
void Horse_InitPlayerHorse(struct PlayState* play, struct Player* player);
void Horse_RotateToPoint(struct Actor* actor, Vec3f* pos, s16 turnAmount);

#endif