OdysseyDecomp/lib/al/sensor/HitSensorKeeper.h
2021-11-18 00:22:30 +01:00

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