Basically give up on d_t_sound_area

This commit is contained in:
robojumper
2024-06-09 00:07:28 +02:00
parent fda931e2ae
commit 4e77023d7b
9 changed files with 215 additions and 29 deletions
+22
View File
@@ -0,0 +1,22 @@
#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);
};
#endif