16 lines
478 B
C#
16 lines
478 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class CourseStep {
|
|
public CoursePlatformType coursePlatformType;
|
|
public Platform.PlatformPattern platformPattern;
|
|
public Platform.MileagePattern mileagePattern;
|
|
public SlideObstaclePattern.SlideLayout slideLayout;
|
|
public Platform.ItemPattern itemPattern;
|
|
public GameManager.TutorialGuideType guideType;
|
|
public float yPosition;
|
|
public float spawnInterval;
|
|
public string title;
|
|
public string message;
|
|
}
|