| 71 | virtual void resolveResource(Resource* res); |
| 72 | |
| 73 | [[nodiscard]] size_t size() const { return m_resources.size(); }; |
| 74 | [[nodiscard]] bool empty() const { return size() == 0; } |
| 75 | [[nodiscard]] Resource& at(int index) { return *m_resources.at(index); } |
| 76 | [[nodiscard]] Resource const& at(int index) const { return *m_resources.at(index); } |
no outgoing calls
no test coverage detected