TimePickerController.cs 396 B

123456789101112131415161718192021
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class TimePickerController : MonoBehaviour
  5. {
  6. public GameObject DayUp;
  7. public GameObject MontUp;
  8. public GameObject YearUp;
  9. // Start is called before the first frame update
  10. void Start()
  11. {
  12. }
  13. // Update is called once per frame
  14. void Update()
  15. {
  16. }
  17. }