Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@
*/

using CarterGames.Assets.SaveManager.Helpers;
using UnityEngine.Scripting;

namespace CarterGames.Assets.SaveManager
{
/// <summary>
/// Handles saving game data to a local file.
/// </summary>
[Preserve]
public sealed class SaveLocationLocalFile : ISaveDataLocation
{
/* ─────────────────────────────────────────────────────────────────────────────────────────────────────────────
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,14 @@
* If not, see <https://www.gnu.org/licenses/>.
*/

using UnityEngine.Scripting;

namespace CarterGames.Assets.SaveManager
{
/// <summary>
/// Handles saving game data to a player prefs.
/// </summary>
[Preserve]
public sealed class SaveLocationPlayerPrefs : ISaveDataLocation
{
/* ─────────────────────────────────────────────────────────────────────────────────────────────────────────────
Expand Down