1#pragma once
2
3#include "Library/LiveActor/LiveActor.h"
4
5class ShineTowerKey : public al::LiveActor {
6public:
7 ShineTowerKey(const char* name);
8
9 void init(const al::ActorInitInfo& info) override;
10 bool receiveMsg(const al::SensorMsg* message, al::HitSensor* other,
11 al::HitSensor* self) override;
12 void exeWait();
13};
14