mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-09-20 05:25:59 +08:00
16 lines
261 B
C#
16 lines
261 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace UnityExplorer.UI.Widgets.InfiniteScroll
|
|||
|
{
|
|||
|
public interface ICell
|
|||
|
{
|
|||
|
bool Enabled { get; }
|
|||
|
|
|||
|
void Enable();
|
|||
|
void Disable();
|
|||
|
}
|
|||
|
}
|