mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-23 09:04:21 +00:00
23 lines
442 B
C++
23 lines
442 B
C++
#pragma once
|
|
|
|
#include <math/seadVector.h>
|
|
|
|
namespace al {
|
|
class AreaObjGroup;
|
|
|
|
class SwitchOnAreaGroup {
|
|
public:
|
|
SwitchOnAreaGroup(AreaObjGroup* areaObjGroup);
|
|
|
|
virtual bool isExternalCondition() const;
|
|
|
|
void update(const sead::Vector3f* positions, s32 posCount);
|
|
void update(const sead::Vector3f& position);
|
|
|
|
private:
|
|
AreaObjGroup* mAreaObjGroup;
|
|
};
|
|
|
|
static_assert(sizeof(SwitchOnAreaGroup) == 0x10);
|
|
} // namespace al
|