15 lines
289 B
C#
15 lines
289 B
C#
//MIT License
|
|
//Copyright (c) 2020 Mohammed Iqubal Hussain
|
|
//Website : Polyandcode.com
|
|
|
|
/// <summary>
|
|
/// Interface for creating a Cell.
|
|
/// Prototype Cell must have a monobeviour inheriting from ICell
|
|
/// </summary>
|
|
namespace PolyAndCode.UI
|
|
{
|
|
public interface ICell
|
|
{
|
|
}
|
|
}
|