Files
isle/LEGO1/legohideanimpresenter.h
Christian Semmler f45f248456 Annotate globals
2023-11-30 09:34:28 -05:00

30 lines
642 B
C++

#ifndef LEGOHIDEANIMPRESENTER_H
#define LEGOHIDEANIMPRESENTER_H
#include "legoloopinganimpresenter.h"
// VTABLE: LEGO1 0x100d9278
// SIZE 0xc4
class LegoHideAnimPresenter : public LegoLoopingAnimPresenter {
public:
LegoHideAnimPresenter();
// FUNCTION: LEGO1 0x1006d880
inline const char* ClassName() const override // vtable+0xc
{
// GLOBAL: LEGO1 0x100f06cc
return "LegoHideAnimPresenter";
}
// FUNCTION: LEGO1 0x1006d890
inline MxBool IsA(const char* name) const override // vtable+0x10
{
return !strcmp(name, ClassName()) || LegoAnimPresenter::IsA(name);
}
private:
void Init();
};
#endif // LEGOHIDEANIMPRESENTER_H