Files
UnityExplorer/src/UI/Widgets/InfiniteScroll/ICell.cs
Sinai 7eb4b1bc77 WIP
* Using publicized mono assemblies
* Remaking UI from scratch. Done the Scene Explorer so far.
2021-04-15 20:18:03 +10:00

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