mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 16:08:05 -05:00
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
|