mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00

* Add JetSkiRace vtable * Fix vtable * Fixes * Update jetskirace.cpp --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
11 lines
209 B
C++
11 lines
209 B
C++
#ifndef CAVEENTITY_H
|
|
#define CAVEENTITY_H
|
|
|
|
#include "racestandsentity.h"
|
|
|
|
// No overrides, uses vtable from RaceStandsEntity
|
|
// SIZE 0x68
|
|
class CaveEntity : public RaceStandsEntity {};
|
|
|
|
#endif // CAVEENTITY_H
|