NHSE/NHSE.Core/Save/Files/Profile.cs
2026-01-13 16:02:58 -06:00

11 lines
254 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.
}