methods in the class body don't need a namespace

This commit is contained in:
Anonymous Maarten 2023-06-30 08:14:28 +02:00
parent 5ed2ea3e66
commit d86180f2dd

View File

@ -15,14 +15,14 @@ class MxMediaPresenter : public MxPresenter
virtual long Tickle() override; // vtable+0x8, override MxCore
// OFFSET: LEGO1 0x1000c5c0
inline virtual const char *MxMediaPresenter::ClassName() const override // vtable+0xc
inline virtual const char *ClassName() const override // vtable+0xc
{
// 0x100f074c
return "MxMediaPresenter";
}
// OFFSET: LEGO1 0x1000c5d0
inline virtual MxBool MxMediaPresenter::IsA(const char *name) const override // vtable+0x10
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
{
return !strcmp(name, MxMediaPresenter::ClassName()) || MxPresenter::IsA(name);
}