WXMC/proj/unity/Assets/Scripts/Wish/PuzzleTarotCardsConfig.cs
2024-12-04 16:18:46 +08:00

10 lines
274 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "TarotCards", menuName = "ScriptableObject/TarotCard", order = 0)]
public class PuzzleTarotCardsConfig : ScriptableObject
{
public List<PuzzleTarotCard> Cards;
}