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