mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 16:18:31 -05:00
20 lines
294 B
C
20 lines
294 B
C
|
#ifndef RACESKEL_H
|
||
|
#define RACESKEL_H
|
||
|
|
||
|
#include "legoanimactor.h"
|
||
|
|
||
|
/*
|
||
|
VTABLE: LEGO1 0x100d7668 LegoPathActor
|
||
|
VTABLE: LEGO1 0x100d7738 LegoAnimActor
|
||
|
*/
|
||
|
// SIZE 0x178
|
||
|
class RaceSkel : public LegoAnimActor {
|
||
|
public:
|
||
|
RaceSkel();
|
||
|
|
||
|
private:
|
||
|
undefined4 m_unk0x1c; // 0x1c
|
||
|
};
|
||
|
|
||
|
#endif // RACESKEL_H
|