1
0
mirror of https://github.com/blawar/ooot.git synced 2024-07-04 18:13:37 +00:00
ooot/include/def/z_path.h
2022-02-14 10:56:16 -05:00

10 lines
275 B
C

#pragma once
struct Path;
struct Vec3f;
struct GlobalContext;
struct Actor;
void Path_CopyLastPoint(Path* path, Vec3f* dest);
Path* Path_GetByIndex(GlobalContext* globalCtx, s16 index, s16 max);
f32 Path_OrientAndGetDistSq(Actor* actor, Path* path, s16 waypoint, s16* yaw);