Files
aibis-dream/Assets/Scripts/Game Loop/TalkSceneSO.cs
T
2024-08-11 14:32:14 +08:00

20 lines
393 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.AddressableAssets;
using Yarn.Unity;
namespace AibisDream
{
[CreateAssetMenu(menuName = "Game Scene/TalkSceneSO")]
public class TalkSceneSO : ScriptableObject
{
public TalkSceneSO nextScene;
public YarnProject yarnProject;
public bool isEndOfDay;
}
}