Interface ISaveGame
An immutable snapshot of the contents of a save for a given emulation that stores game resume data (savedata).
ISave
Namespace: Snowflake.Orchestration.Saving
Assembly: Snowflake.Framework.Primitives.dll
Syntax
public interface ISaveGame
Properties
CreatedTimestamp
The timestamp this save was created.
Declaration
DateTimeOffset CreatedTimestamp { get; }
Property Value
Type | Description |
---|---|
System. |
SaveType
A unique identifier that identifies all saves of this particular type. Saves with the same identifier are expected to have the same folder and file structure.
Declaration
string SaveType { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
ExtractSave(IIndelibleDirectory)
Writes the content of the save to the given directory
Declaration
Task ExtractSave(IIndelibleDirectory outputDirectory)
Parameters
Type | Name | Description |
---|---|---|
IIndelible |
outputDirectory |
Returns
Type | Description |
---|---|
System. |