mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
add actions forward decl header (#699)
* add actions forward decl header * newline * format * remove existing fwd declares * Headers * replace COMPAT_MODE check * flip --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
@@ -19,9 +19,6 @@ struct LegoCharacterComparator {
|
||||
|
||||
// SIZE 0x08
|
||||
struct LegoCharacter {
|
||||
LegoROI* m_roi; // 0x00
|
||||
MxU32 m_refCount; // 0x04
|
||||
|
||||
LegoCharacter(LegoROI* p_roi)
|
||||
{
|
||||
m_roi = p_roi;
|
||||
@@ -29,6 +26,9 @@ struct LegoCharacter {
|
||||
}
|
||||
|
||||
inline void AddRef() { m_refCount++; }
|
||||
|
||||
LegoROI* m_roi; // 0x00
|
||||
MxU32 m_refCount; // 0x04
|
||||
};
|
||||
|
||||
typedef map<const char*, LegoCharacter*, LegoCharacterComparator> LegoCharacterMap;
|
||||
|
Reference in New Issue
Block a user