mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
19 lines
335 B
C
19 lines
335 B
C
|
#ifndef REGISTRATIONBOOK_H
|
||
|
#define REGISTRATIONBOOK_H
|
||
|
|
||
|
#include "legoworld.h"
|
||
|
|
||
|
// VTABLE 0x100d9928
|
||
|
// SIZE 0x2d0
|
||
|
class RegistrationBook : public LegoWorld
|
||
|
{
|
||
|
public:
|
||
|
RegistrationBook();
|
||
|
virtual ~RegistrationBook() override; // vtable+0x0
|
||
|
|
||
|
virtual long Notify(MxParam &p) override; // vtable+0x4
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // REGISTRATIONBOOK_H
|