mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-17 17:05:09 +00:00
20 lines
No EOL
362 B
C++
20 lines
No EOL
362 B
C++
#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
|
|
};
|
|
}; |