| 3175 | } |
| 3176 | |
| 3177 | EntityId Map::GetLightSourceId( |
| 3178 | const unsigned int parent_procedure_number, |
| 3179 | const unsigned int light_source_coomand_number ) const |
| 3180 | { |
| 3181 | PC_ASSERT( parent_procedure_number < 256u ); |
| 3182 | PC_ASSERT( light_source_coomand_number < 256u ); |
| 3183 | return parent_procedure_number * 256u + light_source_coomand_number; |
| 3184 | } |
| 3185 | |
| 3186 | void Map::PrepareRocketStateMessage( const Rocket& rocket, Messages::RocketState& message ) |
| 3187 | { |
nothing calls this directly
no outgoing calls
no test coverage detected