mirror of
https://github.com/kwsch/NHSE.git
synced 2026-08-06 17:54:26 -05:00
11 lines
254 B
C#
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.
|
|
} |