mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-29 13:04:39 -05:00
23 lines
662 B
C#
23 lines
662 B
C#
namespace NHSE.Core
|
|
{
|
|
/// <summary>
|
|
/// Stores file sizes for various savedata files at different patch revisions.
|
|
/// </summary>
|
|
public class SaveFileSizes
|
|
{
|
|
public readonly uint Main;
|
|
public readonly uint Personal;
|
|
public readonly uint PhotoStudioIsland;
|
|
public readonly uint PostBox;
|
|
public readonly uint Profile;
|
|
|
|
public SaveFileSizes(uint main, uint personal, uint photo, uint postbox, uint profile)
|
|
{
|
|
Main = main;
|
|
Personal = personal;
|
|
PhotoStudioIsland = photo;
|
|
PostBox = postbox;
|
|
Profile = profile;
|
|
}
|
|
}
|
|
} |