mirror of
https://github.com/CraftyBoss/Starlight-SMO-LayoutEditing.git
synced 2026-07-14 05:06:43 -07:00
20 lines
362 B
C++
20 lines
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
|
|
};
|
|
}; |