mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-13 02:38:11 +00:00
18 lines
323 B
C++
Executable file
18 lines
323 B
C++
Executable file
#pragma once
|
|
|
|
#include "al/sensor/HitSensor.h"
|
|
|
|
namespace al {
|
|
class HitSensorKeeper {
|
|
public:
|
|
HitSensorKeeper(int);
|
|
|
|
al::HitSensor* getSensor(char const*) const;
|
|
|
|
al::HitSensor* getSensor(int) const;
|
|
|
|
int _0;
|
|
int mSensorCount; // _04
|
|
al::HitSensor** mSensors; // _8
|
|
};
|
|
}; // namespace al
|