mirror of
https://github.com/isledecomp/isle.git
synced 2025-02-16 19:50:15 -05:00
MxNextActionDataStart
This commit is contained in:
parent
7b2db753fb
commit
41e8cfa2f1
1 changed files with 16 additions and 1 deletions
|
@ -6,7 +6,22 @@
|
|||
// VTABLE 0x100dc9a0
|
||||
class MxNextActionDataStart : public MxCore
|
||||
{
|
||||
|
||||
// OFFSET: LEGO1 0x100c1990
|
||||
virtual ~MxNextActionDataStart() override;
|
||||
{
|
||||
|
||||
}
|
||||
inline virtual const char *ClassName() const override // vtable+0x0c
|
||||
{
|
||||
// 0x100c1900
|
||||
return "MxNextActionDataStart";
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c1910
|
||||
inline virtual MxBool IsA(const char *p_name) const override // vtable+0x10
|
||||
{
|
||||
return !strcmp(p_name, MxNextActionDataStart::ClassName()) || MxCore::IsA(p_name);
|
||||
}
|
||||
};
|
||||
|
||||
#endif // MXNEXTACTIONDATASTART_H
|
||||
|
|
Loading…
Reference in a new issue