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