| 142 | /// <returns>Found actors list.</returns> |
| 143 | template<typename T> |
| 144 | static Array<T*, HeapAllocation> GetAssets() |
| 145 | { |
| 146 | Array<Asset*, HeapAllocation> assets = GetAssets(T::GetStaticClass()); |
| 147 | return *(Array<T*, HeapAllocation>*) & assets; |
| 148 | } |
| 149 | |
| 150 | /// <summary> |
| 151 | /// Gets the raw dictionary of assets (loaded or during load). |
no outgoing calls
no test coverage detected