| 186 | /// <returns>The found object or null if missing.</returns> |
| 187 | template<typename T> |
| 188 | FORCE_INLINE static T* TryFindObject(const Guid& id) |
| 189 | { |
| 190 | return (T*)TryFindObject(id, T::GetStaticClass()); |
| 191 | } |
| 192 | |
| 193 | /// <summary> |
| 194 | /// Tries to find the object by the given identifier. |
no outgoing calls
no test coverage detected