12 lines
234 B
C#
12 lines
234 B
C#
|
using UnityEngine;
|
||
|
|
||
|
|
||
|
namespace Gameplay
|
||
|
{
|
||
|
// 卡牌书的显示相关脚本
|
||
|
public class CardBookViewer : MonoBehaviour
|
||
|
{
|
||
|
[SerializeField] private Transform LeftHandPoint;
|
||
|
private CardBook CardBook;
|
||
|
}
|
||
|
}
|