mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
Introduce clang-format (#240)
This commit is contained in:

committed by
GitHub

parent
e928fc9425
commit
b449da1fa3
@@ -4,26 +4,25 @@
|
||||
#include "legoworld.h"
|
||||
|
||||
// VTABLE 0x100d5db0
|
||||
class LegoRace : public LegoWorld
|
||||
{
|
||||
class LegoRace : public LegoWorld {
|
||||
public:
|
||||
LegoRace();
|
||||
virtual ~LegoRace() override; // vtable+0x0
|
||||
LegoRace();
|
||||
virtual ~LegoRace() override; // vtable+0x0
|
||||
|
||||
virtual MxLong Notify(MxParam &p) override; // vtable+0x4
|
||||
virtual MxLong Notify(MxParam& p) override; // vtable+0x4
|
||||
|
||||
// OFFSET: LEGO1 0x10015ba0
|
||||
inline const char *ClassName() const override // vtable+0xc
|
||||
{
|
||||
// 0x100f07c4
|
||||
return "LegoRace";
|
||||
}
|
||||
// OFFSET: LEGO1 0x10015ba0
|
||||
inline const char* ClassName() const override // vtable+0xc
|
||||
{
|
||||
// 0x100f07c4
|
||||
return "LegoRace";
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x10015bb0
|
||||
inline MxBool IsA(const char *name) const override // vtable+0x10
|
||||
{
|
||||
return !strcmp(name, LegoRace::ClassName()) || LegoWorld::IsA(name);
|
||||
}
|
||||
// OFFSET: LEGO1 0x10015bb0
|
||||
inline MxBool IsA(const char* name) const override // vtable+0x10
|
||||
{
|
||||
return !strcmp(name, LegoRace::ClassName()) || LegoWorld::IsA(name);
|
||||
}
|
||||
};
|
||||
|
||||
#endif // LEGORACE_H
|
||||
|
Reference in New Issue
Block a user