mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-12 10:18:16 +00:00
18 lines
330 B
C++
Executable file
18 lines
330 B
C++
Executable file
#pragma once
|
|
|
|
namespace al {
|
|
class HitSensor;
|
|
|
|
class SensorHitGroup {
|
|
public:
|
|
SensorHitGroup(int, const char*);
|
|
|
|
void add(al::HitSensor*);
|
|
void remove(al::HitSensor*);
|
|
al::HitSensor* getSensor(int) const;
|
|
|
|
int _0;
|
|
int mSensorCount; // _4
|
|
al::HitSensor** mSensors; // _8
|
|
};
|
|
}; // namespace al
|