isle/LEGO1/lego/legoomni/include/act3actor.h
Christian Semmler c47206617d
Reorganize sources and files (#414)
* Reorganize sources

* Refactor

* Remove relative paths

* Renames

* Fix gitignore

* Remove stuff

* Try fixing format script

* Fix format

* Fix format

* Fix naming script

* Test format

* Fix format
2024-01-08 10:58:49 +01:00

18 lines
429 B
C++

#ifndef ACT3ACTOR_H
#define ACT3ACTOR_H
#include "mxcore.h"
// FIXME: Uncertain location. There are three vtables which eventually call this
// class' ClassName() function, but none of them call it directly.
class Act3Actor : public MxCore {
public:
// FUNCTION: LEGO1 0x100431b0
inline virtual const char* ClassName() const override
{
// STRING: LEGO1 0x100f03ac
return "Act3Actor";
}
};
#endif // ACT3ACTOR_H