| 1 | #pragma once |
| 2 | |
| 3 | namespace al { |
| 4 | class HitSensorKeeper; |
| 5 | class HitSensor; |
| 6 | class LiveActor; |
| 7 | class SensorMsg; |
| 8 | } // namespace al |
| 9 | |
| 10 | namespace alActorSensorFunction { |
| 11 | al::HitSensorKeeper* getSensorKeeper(const al::LiveActor* actor); |
| 12 | // NOTE: The order of sensors here is the opposite of sendMsg functions |
| 13 | bool sendMsgSensorToSensor(const al::SensorMsg& message, al::HitSensor* sender, |
| 14 | al::HitSensor* receiver); |
| 15 | bool sendMsgToActorUnusedSensor(const al::SensorMsg& message, al::LiveActor* receiverActor); |
| 16 | } // namespace alActorSensorFunction |
| 17 | |