Merge pull request #53 from robojumper/d_t_sound_area

Basically give up on d_t_sound_area
This commit is contained in:
Elijah Thomas
2024-06-14 19:01:45 -04:00
committed by GitHub
12 changed files with 278 additions and 39 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef ACTOR_ON_RAIL_H
#define ACTOR_ON_RAIL_H
#include <common.h>
class ActorOnRail {
private:
void *mpPathPtr;
int mRoomIndex;
u8 mPathSubtype;
public:
/* 800A6690 */
ActorOnRail();
/* 800A66D0 */
virtual ~ActorOnRail();
/* 800A6D90 */
bool init(int pathIndex, int roomId, int pathSubtype);
/* 800A68B0 */
mVec3_c *getPntPosForIndex(int index);
};
#endif