summaryrefslogtreecommitdiff
path: root/scripts/Utils/ISaveable.cs
blob: 12f5784f7d516acf946244e67140b2d65897699e (plain)
1
2
3
4
5
6
7
8
9

using Godot;

public interface ISaveable
{
	public Godot.Collections.Dictionary<string, Variant> GetSaveData();

	public bool LoadSaveData(Godot.Collections.Dictionary<string, Variant> saveData);
}