MayHeCome/Assets/Exoa/TutorialEngine/Scripts/Data/Tutorial.cs

12 lines
242 B
C#
Raw Normal View History

2024-12-18 09:55:34 +00:00
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
namespace Exoa.TutorialEngine
{
[System.Serializable]
public class Tutorial
{
public TutorialSession.TutorialStep[] tutorial_steps;
}
}