DatePickerCell.cs 661 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using UnityEngine;
  7. namespace Bitsplash.DatePicker
  8. {
  9. [RequireComponent(typeof(RectTransform))]
  10. public abstract class DatePickerCell : MonoBehaviour
  11. {
  12. public abstract Color MarkerColor { get; set; }
  13. public abstract bool CellSelected { get; set; }
  14. public abstract bool CellEnabled { get; set; }
  15. public abstract DateTime DayValue { get; set; }
  16. public abstract void SetText(string text);
  17. public abstract void SetInitialSettings(bool enabled, bool selected);
  18. }
  19. }