namespace Babushka.scripts.CSharp.Common.Savegame;
///
/// Defines the behaviour of Nodes that have fields that should save / load to disk.
///
public interface ISaveable
{
///
/// Adds or updates the field data that shall be stored to disk.
///
public void UpdateSaveData();
///
/// Loads the field data from disk.
///
public void LoadFromSaveData();
}