Files
UnityExplorer/src/UI/Widgets/InfiniteScroll/ICell.cs

16 lines
261 B
C#
Raw Normal View History

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();
}
}