mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
10 lines
192 B
C#
10 lines
192 B
C#
using BililiveRecorder.Core.Config.V2;
|
|
|
|
namespace BililiveRecorder.Core
|
|
{
|
|
public interface IRoomFactory
|
|
{
|
|
IRoom CreateRoom(RoomConfig roomConfig, int initDelayFactor);
|
|
}
|
|
}
|