17 lines
276 B
C#
17 lines
276 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class Cutscene : MonoBehaviour
|
||
|
{
|
||
|
public enum Stage
|
||
|
{
|
||
|
Loading,
|
||
|
InProgress,
|
||
|
Complete,
|
||
|
}
|
||
|
|
||
|
private Stage _stage;
|
||
|
public Stage LoadStage => _stage;
|
||
|
}
|