Files
Continentis/Assets/Scripts/MainGame/Card/CardView/CardViewCollection.cs
SoulliesOfficial ac98ec3aef 更新
2026-04-17 12:01:50 -04:00

23 lines
617 B
C#

using System;
using System.Collections.Generic;
using SLSUtilities.General;
using UnityEngine;
namespace Continentis.MainGame.Card
{
[CreateAssetMenu(fileName = "CardViewCollection", menuName = "Continentis/MainGame/Card/CardViewCollection")]
public class CardViewCollection : ScriptableObject
{
[KeyWidth(0.25f)]
public SerializableDictionary<string, CardViewParts> cardViews;
}
[Serializable]
public class CardViewParts
{
public Sprite background;
[KeyWidth(0.25f)]
public SerializableDictionary<string, GameObject> customParts;
}
}