Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 926 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 926 Bytes

Save and Load Game Data

Save and Load Game data with encryption for Unity3D.

Save and Load Logo

download GitHub GitHub release

Getting Started

using Prashant.SaveGameData;

then

GameData.Save(data,"yourpassword");

here data is an object of your "Data Class".

data = GameData.Load(data,"yourpassword");

pass the default data to create a new file if the file doesn't exist.

That's it.