Add duty free systems and travel stage updates

This commit is contained in:
jongjae0305
2026-07-09 02:50:48 +09:00
parent 445d74d462
commit 750e9ce0a6
340 changed files with 21825 additions and 1197 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
[Serializable]
public class CourseProfile {
public CourseStep[] openingSteps;
public CourseStep[] loopSteps;
public CourseStep[] GetOpeningSteps() {
return CourseStepFactory.CloneSteps(openingSteps);
}
public CourseStep[] GetLoopSteps() {
return CourseStepFactory.CloneSteps(loopSteps);
}
public static CourseProfile Create(CourseStep[] openingSteps, CourseStep[] loopSteps) {
return new CourseProfile {
openingSteps = CourseStepFactory.CloneSteps(openingSteps),
loopSteps = CourseStepFactory.CloneSteps(loopSteps)
};
}
}