17 lines
331 B
C#
17 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Cute;
|
|
using UnityEngine;
|
|
|
|
public class MyPageItem : MonoBehaviour
|
|
{
|
|
|
|
[SerializeField]
|
|
private MyPageCardPanelAnimation _cardMove;
|
|
|
|
[SerializeField]
|
|
private MyPageCardPanel[] _cardPanelList;
|
|
|
|
protected MyPageCardPanelAnimation CardAnimation => _cardMove;
|
|
}
|