NHSE/NHSE.Core/Save/Files/Profile.cs
2020-03-27 21:01:24 -07:00

12 lines
288 B
C#

namespace NHSE.Core
{
/// <summary>
/// profile.dat
/// </summary>
public sealed class Profile : EncryptedFilePair
{
public Profile(string folder) : base(folder, "profile") { }
// pretty much just a jpeg -- which is also stored in Personal.
}
}