Files
2024-08-20 20:19:54 -04:00

30 lines
629 B
C++

#pragma once
#include "Game/NameObj/NameObj.hpp"
#include "Game/Util.hpp"
class GroupChecker : public NameObj {
public:
GroupChecker(const char *, u32);
virtual ~GroupChecker();
virtual void initAfterPlacement();
void add(const NameObj *);
HashSortTable *mHashTable; // 0xC
};
class GroupCheckManager : public NameObj {
public:
GroupCheckManager(const char *);
virtual ~GroupCheckManager();
void add(const NameObj *, s32);
bool isExist(const NameObj *, s32);
GroupChecker *mShellSearchGroup; // 0xC
GroupChecker *mSpinningBoxSearchGroup; // 0x10
u32 _14;
};