mirror of
https://github.com/isledecomp/isle.git
synced 2026-02-28 06:57:37 +00:00
Use override
This commit is contained in:
parent
00584f631d
commit
a8e433a703
@ -11,14 +11,14 @@
|
|||||||
class LegoTestTimer : public MxCore {
|
class LegoTestTimer : public MxCore {
|
||||||
public:
|
public:
|
||||||
LegoTestTimer(LegoS32 p_numTimers, LegoS32 p_interval, LegoS32 p_numBins, LegoS32 p_type);
|
LegoTestTimer(LegoS32 p_numTimers, LegoS32 p_interval, LegoS32 p_numBins, LegoS32 p_type);
|
||||||
virtual ~LegoTestTimer(); // vtable+00
|
~LegoTestTimer() override; // vtable+00
|
||||||
virtual MxLong Notify(MxParam& p_param); // vtable+04
|
MxLong Notify(MxParam& p_param) override; // vtable+04
|
||||||
|
|
||||||
// FUNCTION: BETA10 0x100d18e0
|
// FUNCTION: BETA10 0x100d18e0
|
||||||
static const char* HandlerClassName() { return "LegoTestTimer"; }
|
static const char* HandlerClassName() { return "LegoTestTimer"; }
|
||||||
|
|
||||||
// FUNCTION: BETA10 0x100d18b0
|
// FUNCTION: BETA10 0x100d18b0
|
||||||
virtual const char* ClassName() const // vtable+0c
|
const char* ClassName() const override // vtable+0c
|
||||||
{
|
{
|
||||||
return HandlerClassName();
|
return HandlerClassName();
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user