mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-13 11:41:15 +00:00
15 lines
232 B
C++
15 lines
232 B
C++
#ifndef LEGORACE_H
|
|
#define LEGORACE_H
|
|
|
|
#include "legoworld.h"
|
|
|
|
class LegoRace : public LegoWorld
|
|
{
|
|
public:
|
|
LegoRace();
|
|
virtual ~LegoRace(); // vtable+0x0
|
|
|
|
virtual long Notify(MxParam &p); // vtable+0x4
|
|
};
|
|
|
|
#endif // LEGORACE_H
|