chore: initialize standalone UPM package
Publish UPM package / publish (push) Failing after 1s

This commit is contained in:
2026-08-26 02:50:43 +08:00
commit 1180be88a6
72 changed files with 3331 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
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();
}
}