//MIT License //Copyright (c) 2020 Mohammed Iqubal Hussain //Website : Polyandcode.com /// /// Interface for creating DataSource /// Recyclable Scroll Rect must be provided a Data source which must inherit from this. /// namespace PolyAndCode.UI { public interface IRecyclableScrollRectDataSource { int GetItemCount(); void SetCell(ICell cell, int index); } }