mirror of
https://github.com/zeldaret/oot.git
synced 2024-12-27 07:07:09 +00:00
1adf696588
* document z_horse.h * .bss * suggestions and more comments * bss * INGORACE -> INGO_RACE * format header macros * FIx incorrect type comparision * EnInMode -> EnInStartMode * R_EXITED_SCENE_RIDING_HORSE
16 lines
396 B
C
16 lines
396 B
C
#ifndef Z64HORSE_H
|
|
#define Z64HORSE_H
|
|
|
|
#include "ultra64.h"
|
|
#include "z64math.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
|