forked from project-redbud/FunGame-Core
* 添加DataTable Converter * 修改DataSet Converter,支持多个Tables反序列化,此转换器也支持兼容DataTable * 修改构造方法、工厂方法,添加常用类自定义转换器
9 lines
165 B
C#
9 lines
165 B
C#
namespace Milimoe.FunGame.Core.Interface.Base
|
|
{
|
|
public interface IFactory<T>
|
|
{
|
|
public Type EntityType { get; }
|
|
public T Create();
|
|
}
|
|
}
|