| 15 | } |
| 16 | |
| 17 | CylinderHead *es_script::EngineContext::getHead(CylinderHeadNode *head) { |
| 18 | auto it = m_heads.find(head); |
| 19 | if (it != m_heads.end()) { |
| 20 | return it->second; |
| 21 | } |
| 22 | else return nullptr; |
| 23 | } |
| 24 | |
| 25 | void es_script::EngineContext::addBank(CylinderBankNode *node, CylinderBank *bank) { |
| 26 | m_banks[node] = bank; |
no outgoing calls
no test coverage detected