Add travel map flow and update docs

This commit is contained in:
jongjae0305
2026-06-24 15:34:09 +09:00
parent 8561fab0a2
commit af26dd4311
37 changed files with 3114 additions and 165 deletions
+16
View File
@@ -0,0 +1,16 @@
using System;
[Serializable]
public class MapDefinition {
public MapId mapId;
public string displayName;
public string routeName;
public bool isTutorial;
public float targetDistance;
public float timeLimit;
public int clearMileageReward;
public bool hasNextMap;
public MapId nextMapId;
public PlatformSpawner.TutorialStep[] openingSteps;
public PlatformSpawner.TutorialStep[] loopSteps;
}