Degullmok-client/Assets/Script/UI/PanelController/ScrollPanelController.cs
2025-03-14 14:55:31 +09:00

21 lines
470 B
C#

using System.Collections;
using System.Collections.Generic;
using TMPro;
using Unity.VisualScripting;
using UnityEngine;
using UnityEngine.UI;
public class ScrollPanelController : PanelController
{
protected const int MAX_COUNT = 20; //스크롤 아이템 최대 개수
[SerializeField]protected GameObject scrollItemPrefab;
[SerializeField]protected GameObject content;
public void OnClickCloseButton()
{
Hide();
}
}