using YG;
namespace ProjectYG.Save
{
public class YandexGamesSaveSystem : ISaveSystem
{
public void Save(SaveData data)
{
YandexGame.savesData += data;
YandexGame.SaveProgress();
}
public SaveData Load()
{
return (SaveData)YandexGame.savesData;
}
}
}
Operator '+=' cannot be applied to operands of type 'SavesYG' and 'SaveData'