- tweak: View autogenerator

This commit is contained in:
2025-07-02 21:32:51 +03:00
parent 9e95d68c4a
commit 517fadaab8
57 changed files with 316 additions and 286 deletions

View File

@@ -55,6 +55,11 @@ public class HashApi : IFileApi
return _fileApi.Has(GetManifestPath(item));
}
public bool Remove(RobustManifestItem item)
{
return _fileApi.Remove(GetManifestPath(item));
}
private string GetManifestPath(RobustManifestItem item){
return GetManifestPath(item.Hash);
}