mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
30 lines
629 B
C++
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;
|
|
}; |