| 1 | #include "Library/Stage/StageRhythm.h" |
|---|---|
| 2 | |
| 3 | #include "Library/Execute/ExecuteUtil.h" |
| 4 | #include "Library/LiveActor/ActorInitInfo.h" |
| 5 | |
| 6 | namespace al { |
| 7 | |
| 8 | StageSyncCounter::StageSyncCounter() = default; |
| 9 | |
| 10 | void StageSyncCounter::initAfterPlacementSceneObj(const ActorInitInfo& initInfo) { |
| 11 | registerExecutorUser(user: this, director: initInfo.executeDirector, listName: getSceneObjName()); |
| 12 | } |
| 13 | |
| 14 | } // namespace al |
| 15 |