Files
Ragon/Ragon.Relay/Sources/Plugin/RelayServerPlugin.cs
T
2024-11-03 11:36:58 +03:00

18 lines
358 B
C#

using Ragon.Server;
using Ragon.Server.Plugin;
namespace Ragon.Relay
{
public class RelayServerPlugin : BaseServerPlugin
{
public override bool OnCommand(string command, string payload)
{
return true;
}
public override IRoomPlugin CreateRoomPlugin(RoomInformation information)
{
return new RelayRoomPlugin();
}
}
}