mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-23 09:04:21 +00:00
19 lines
332 B
C++
Executable file
19 lines
332 B
C++
Executable file
#pragma once
|
|
|
|
#include "Library/HitSensor/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
|