mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-09-20 13:36:01 +08:00
WIP
* Using publicized mono assemblies * Remaking UI from scratch. Done the Scene Explorer so far.
This commit is contained in:
15
src/UI/Widgets/InfiniteScroll/ICell.cs
Normal file
15
src/UI/Widgets/InfiniteScroll/ICell.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user