WXMC/.svn/pristine/90/90e914d8209fd63746cd4dbecf7aa5c9f1eae86d.svn-base
2024-12-04 16:18:46 +08:00

10 lines
274 B
Plaintext

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;
}