35 lines
561 B
C#
35 lines
561 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class CalendarDetails : MonoBehaviour
|
|
{
|
|
public static CalendarDetails Inst;
|
|
|
|
public GameObject scrollView;
|
|
|
|
public GameObject prefab;
|
|
|
|
public Transform Content;
|
|
|
|
public Image img;
|
|
|
|
private void Awake()
|
|
{
|
|
Inst = this;
|
|
gameObject.SetActive(false);
|
|
}
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|