12 lines
242 B
C#
12 lines
242 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Exoa.TutorialEngine
|
|
{
|
|
[System.Serializable]
|
|
public class Tutorial
|
|
{
|
|
public TutorialSession.TutorialStep[] tutorial_steps;
|
|
}
|
|
} |