mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 20:19:34 +08:00
14 lines
284 B
C#
14 lines
284 B
C#
using System.Data;
|
|
using Milimoe.FunGame.Core.Entity;
|
|
|
|
namespace Milimoe.FunGame.Core.Api.Factory
|
|
{
|
|
internal class UserFactory
|
|
{
|
|
internal static User GetInstance(DataSet? DataSet, int Index = 0)
|
|
{
|
|
return new User(DataSet, Index);
|
|
}
|
|
}
|
|
}
|