mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
21 lines
443 B
C#
21 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using Wabbajack.Common;
|
|
|
|
namespace Wabbajack.VirtualFileSystem
|
|
{
|
|
public class RootDiskFile : ExtractedDiskFile
|
|
{
|
|
public RootDiskFile(AbsolutePath path) : base(path)
|
|
{
|
|
}
|
|
|
|
public override async Task<Hash> HashAsync()
|
|
{
|
|
return await _path.FileHashCachedAsync();
|
|
}
|
|
}
|
|
}
|