1#pragma once
2
3namespace al {
4class PlacementId;
5
6struct StageSwitchInfo {
7 StageSwitchInfo();
8
9 PlacementId* placementId = nullptr;
10 bool isSwitchOn = false;
11};
12} // namespace al
13