| 27 | } |
| 28 | |
| 29 | CylinderBank *es_script::EngineContext::getBank(CylinderBankNode *bank) const { |
| 30 | auto it = m_banks.find(bank); |
| 31 | if (it != m_banks.end()) { |
| 32 | return it->second; |
| 33 | } |
| 34 | else return nullptr; |
| 35 | } |
| 36 | |
| 37 | void es_script::EngineContext::addRodJournal(RodJournalNode *node, int index) { |
| 38 | m_rodJournals[node] = index; |
nothing calls this directly
no outgoing calls
no test coverage detected