-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1d8c41
commit 7cded3c
Showing
11 changed files
with
936 additions
and
687 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#ifndef D_PATH_H | ||
#define D_PATH_H | ||
|
||
#include "d/d_bg_s.h" | ||
#include "dolphin/types.h" | ||
|
||
struct dPath__Point { | ||
/* 0x00 */ u8 mArg0; | ||
/* 0x01 */ u8 mArg1; | ||
/* 0x02 */ u8 mArg2; | ||
/* 0x03 */ u8 mArg3; | ||
/* 0x04 */ cXyz mPos; | ||
}; | ||
|
||
struct dPath { | ||
/* 0x00 */ u16 mNum; | ||
/* 0x02 */ u16 mNextPathId; | ||
/* 0x04 */ u8 mArg0; | ||
/* 0x05 */ u8 mLoops; | ||
/* 0x06 */ u8 field4_0x6; | ||
/* 0x07 */ u8 field5_0x7; | ||
/* 0x08 */ dPath__Point* mpPnt; | ||
}; | ||
|
||
dPath__Point* dPath_GetPnt(dPath*, int); | ||
dPath* dPath_GetRoomPath(int, int); | ||
void dPath_GetNextRoomPath(dPath*, int); | ||
void dPath_GetPolyRoomPathVec(cBgS_PolyInfo&, cXyz*, int*); | ||
|
||
#endif /* D_PATH_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.