_xiaofang/xiaofang/Assets/Bitsplash/Modular Date Picker/Base/Script/DatePickerCell.cs
2024-11-29 16:19:12 +08:00

21 lines
641 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace Bitsplash.DatePicker
{
[RequireComponent(typeof(RectTransform))]
public abstract class DatePickerCell : MonoBehaviour
{
public abstract Color MarkerColor { get; set; }
public abstract bool CellSelected { get; set; }
public abstract bool CellEnabled { get; set; }
public abstract DateTime DayValue { get; set; }
public abstract void SetText(string text);
public abstract void SetInitialSettings(bool enabled, bool selected);
}
}