A 2D Farming RPG
This is just a simple 2D farming RPG game
Loading...
Searching...
No Matches
ISaveable.cs
Go to the documentation of this file.
1
4public interface ISaveable
5{
6 string ISaveableUniqueID { get; set; }
7
9
11
13
14 void ISaveableStoreScene( string sceneName );
15
16 void ISaveableRestoreScene( string sceneName );
17}
Store all scenes in here. If we have 3 scenes, we have 3 entries.
Interface for unity ISaveable
Definition: ISaveable.cs:5
void ISaveableRegister()
void ISaveableRestoreScene(string sceneName)
void ISaveableStoreScene(string sceneName)
string ISaveableUniqueID
Definition: ISaveable.cs:6
void ISaveableDeregister()