| 226 | } |
| 227 | |
| 228 | bool ContentStorageService::Init() |
| 229 | { |
| 230 | #if USE_EDITOR |
| 231 | Files.EnsureCapacity(1024); |
| 232 | #else |
| 233 | Packages.EnsureCapacity(64); |
| 234 | #endif |
| 235 | StorageMap.EnsureCapacity(2048); |
| 236 | System = New<ContentStorageSystem>(); |
| 237 | Engine::UpdateGraph->AddSystem(System); |
| 238 | return false; |
| 239 | } |
| 240 | |
| 241 | void ContentStorageService::Dispose() |
| 242 | { |
nothing calls this directly
no test coverage detected