mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00
Add static HandlerClassName function (#973)
* Add static HandlerClassName function * Use method in PresenterNameDispatch
This commit is contained in:
@@ -33,13 +33,20 @@ public:
|
||||
|
||||
MxResult Tickle() override; // vtable+0x08
|
||||
|
||||
// FUNCTION: LEGO1 0x1000bfe0
|
||||
inline const char* ClassName() const override // vtable+0x0c
|
||||
// FUNCTION: BETA10 0x1004d9e0
|
||||
static const char* HandlerClassName()
|
||||
{
|
||||
// STRING: LEGO1 0x100f0740
|
||||
return "MxPresenter";
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x1000bfe0
|
||||
// FUNCTION: BETA10 0x1004d9b0
|
||||
inline const char* ClassName() const override // vtable+0x0c
|
||||
{
|
||||
return HandlerClassName();
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x1000bff0
|
||||
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
||||
{
|
||||
|
Reference in New Issue
Block a user