mirror of
https://github.com/isledecomp/isle.git
synced 2025-12-09 23:53:02 +00:00
lego1: fix/match some ClassName functions (#60)
This commit is contained in:
committed by
GitHub
parent
566e107290
commit
6761345c8c
@@ -6,7 +6,18 @@
|
||||
// VTABLE 0x100dd100
|
||||
class MxStreamProvider : public MxCore
|
||||
{
|
||||
public:
|
||||
// OFFSET: LEGO1 0x100d07e0
|
||||
inline virtual const char *ClassName() const override // vtable+0x0c
|
||||
{
|
||||
return "MxStreamProvider";
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100d07f0
|
||||
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
||||
{
|
||||
return !strcmp(name, MxStreamProvider::ClassName()) || MxCore::IsA(name);
|
||||
}
|
||||
};
|
||||
|
||||
#endif // MXSTREAMPROVIDER_H
|
||||
|
||||
Reference in New Issue
Block a user