forked from zxl/LaboratoryProtection
10 lines
187 B
C#
10 lines
187 B
C#
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace UnityTest.ZXL
|
|||
|
{
|
|||
|
public class DialogueAsset : ScriptableObject
|
|||
|
{
|
|||
|
public List<DialogueData> datas;
|
|||
|
}
|
|||
|
}
|