2019-06-01 01:31:10 +01:00
|
|
|
|
using LibHac.Fs.NcaUtils;
|
2018-11-18 19:37:41 +00:00
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.FileSystem.Content
|
|
|
|
|
{
|
|
|
|
|
public struct LocationEntry
|
|
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
|
public string ContentPath { get; private set; }
|
2018-11-18 19:37:41 +00:00
|
|
|
|
public int Flag { get; private set; }
|
2018-12-05 00:52:39 +00:00
|
|
|
|
public long TitleId { get; private set; }
|
|
|
|
|
public ContentType ContentType { get; private set; }
|
2018-11-18 19:37:41 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public LocationEntry(string contentPath, int flag, long titleId, ContentType contentType)
|
2018-11-18 19:37:41 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
ContentPath = contentPath;
|
|
|
|
|
Flag = flag;
|
|
|
|
|
TitleId = titleId;
|
|
|
|
|
ContentType = contentType;
|
2018-11-18 19:37:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public void SetFlag(int flag)
|
2018-11-18 19:37:41 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
Flag = flag;
|
2018-11-18 19:37:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|