1
0
Fork 0
LaboratoryProtection/Assets/UnityTest/ZXL/Scripts/DialogueAsset.cs

10 lines
187 B
C#
Raw Normal View History

2023-09-12 23:18:01 +08:00
using System.Collections.Generic;
using UnityEngine;
namespace UnityTest.ZXL
{
public class DialogueAsset : ScriptableObject
{
public List<DialogueData> datas;
}
}