| 137 | } |
| 138 | |
| 139 | World* Entity::world() const { |
| 140 | if (!m_world) |
| 141 | throw EntityException("world() called while uninitialized"); |
| 142 | |
| 143 | return m_world; |
| 144 | } |
| 145 | |
| 146 | World* Entity::worldPtr() const { |
| 147 | return m_world; |
no outgoing calls
no test coverage detected