mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-02 06:54:59 -05:00
12 lines
288 B
C#
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.
|
|
}
|
|
} |