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;