10 lines
274 B
Plaintext
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;
|
|
}
|