13 lines
356 B
C#
13 lines
356 B
C#
namespace Omegasis.SaveAnywhere.Framework.Models
|
|
{
|
|
/// <summary>The data for the current player.</summary>
|
|
internal class PlayerData
|
|
{
|
|
/// <summary>The current time.</summary>
|
|
public int Time { get; set; }
|
|
|
|
/// <summary>The saved character data.</summary>
|
|
public CharacterData[] Characters { get; set; }
|
|
}
|
|
}
|