Ryujinx/Ryujinx.HLE/FileSystem/Content/LocationEntry.cs

29 lines
766 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
using LibHac;
namespace Ryujinx.HLE.FileSystem.Content
{
public struct LocationEntry
{
public string ContentPath { get; private set; }
public int Flag { get; private set; }
public long TitleId { get; private set; }
public ContentType ContentType { get; private set; }
2018-12-01 21:01:59 +01:00
public LocationEntry(string contentPath, int flag, long titleId, ContentType contentType)
{
2018-12-01 21:24:37 +01:00
ContentPath = contentPath;
Flag = flag;
TitleId = titleId;
ContentType = contentType;
}
2018-12-01 21:01:59 +01:00
public void SetFlag(int flag)
{
2018-12-01 21:24:37 +01:00
Flag = flag;
}
}
}