| 121 | } |
| 122 | |
| 123 | bool SetEventState(const std::string& name, EventType eventType, bool enabled) |
| 124 | { |
| 125 | auto* eventSet = FindEventSet(name); |
| 126 | |
| 127 | if (eventSet == nullptr) |
| 128 | return false; |
| 129 | |
| 130 | eventSet->Events[(int)eventType].Enabled = enabled; |
| 131 | |
| 132 | return true; |
| 133 | } |
| 134 | |
| 135 | void TestVolumes(int roomNumber, const BoundingOrientedBox& box, ActivatorFlags activatorFlag, Activator activator) |
| 136 | { |
no test coverage detected