20 lines
436 B
C#
20 lines
436 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ShrinkTutorial
|
|
{
|
|
[Serializable]
|
|
public sealed class ShrinkTutorialProgress
|
|
{
|
|
public List<string> completedTutorials = new();
|
|
public List<string> skippedTutorials = new();
|
|
}
|
|
|
|
public interface IShrinkTutorialStorage
|
|
{
|
|
ShrinkTutorialProgress Load();
|
|
void Save(ShrinkTutorialProgress progress);
|
|
void Reset();
|
|
}
|
|
}
|