mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 16:18:31 -05:00
a45706a854
Fix structure and add placeholder annotations for LegoAnimActor and subclasses
16 lines
255 B
C++
16 lines
255 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();
|
|
};
|
|
|
|
#endif // RACESKEL_H
|