mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
10 lines
194 B
C#
10 lines
194 B
C#
using BililiveRecorder.Core.Config.V3;
|
|
|
|
namespace BililiveRecorder.Core
|
|
{
|
|
internal interface IRoomFactory
|
|
{
|
|
IRoom CreateRoom(RoomConfig roomConfig, int initDelayFactor);
|
|
}
|
|
}
|