Files
tianrunCRM/Assets/CoolapeFrame/Scripts/ui/public/CLCellBase.cs
2020-07-04 14:41:25 +08:00

23 lines
504 B
C#

/*
********************************************************************************
*Copyright(C),coolae.net
*Author: chenbin
*Version: 2.0
*Date: 2017-01-09
*Description: ui列表元素
*Others:
*History:
*********************************************************************************
*/
using UnityEngine;
using System.Collections;
namespace Coolape
{
public abstract class CLCellBase : CLBehaviour4Lua
{
public abstract void init(object data, object onClick);
}
}