11 lines
240 B
C#
11 lines
240 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[CreateAssetMenu(fileName = "仪式库", menuName = "仪式/仪式库")]
|
||
|
|
||
|
public class YiShiItems : ScriptableObject
|
||
|
{
|
||
|
public List<YiShiItem> yiShiItems;
|
||
|
}
|