mirror of
https://github.com/zeldaret/ss
synced 2026-08-06 09:52:57 -04:00
Merge pull request #53 from robojumper/d_t_sound_area
Basically give up on d_t_sound_area
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user