mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-27 10:24:18 +00:00
Add initial .clang-tidy and fixes
This commit is contained in:
@@ -18,19 +18,19 @@ public:
|
||||
class PizzaMissionState : public LegoState {
|
||||
public:
|
||||
// FUNCTION: LEGO1 0x10039290
|
||||
inline virtual const char* ClassName() const override // vtable+0x0c
|
||||
inline const char* ClassName() const override // vtable+0x0c
|
||||
{
|
||||
// STRING: LEGO1 0x100f00d4
|
||||
return "PizzaMissionState";
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x100392a0
|
||||
inline virtual MxBool IsA(const char* p_name) const override // vtable+0x10
|
||||
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
||||
{
|
||||
return !strcmp(p_name, PizzaMissionState::ClassName()) || LegoState::IsA(p_name);
|
||||
}
|
||||
|
||||
virtual MxResult VTable0x1c(LegoFile* p_legoFile) override; // vtable+0x1c
|
||||
MxResult VTable0x1c(LegoFile* p_legoFile) override; // vtable+0x1c
|
||||
|
||||
inline MxU16 GetColor(MxU8 p_id) { return GetState(p_id)->m_color; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user