🎨 added null checks

This commit is contained in:
2024-01-13 15:15:29 +03:00
parent c64cc61c78
commit 0cd912a1aa
6 changed files with 19 additions and 7 deletions
+6
View File
@@ -1,5 +1,6 @@
using System;
using Newtonsoft.Json;
using Ragon.Server;
using Ragon.Server.Plugin;
namespace Ragon.Relay;
@@ -21,4 +22,9 @@ public class RelayServerPlugin: BaseServerPlugin
return true;
}
public override IRoomPlugin CreateRoomPlugin(RoomInformation information)
{
return new RelayRoomPlugin();
}
}