1
0
Fork 0
vrobot3/Source/BotClientIRC.cs

46 lines
1.2 KiB
C#

//-----------------------------------------------------------------------------
//
// Copyright © 2016 Project Golan
//
// See "LICENSE" for more information.
//
//-----------------------------------------------------------------------------
//
// IRC client.
//
//-----------------------------------------------------------------------------
using System;
namespace ProjectGolan.Vrobot3
{
//
// BotClientIRC
//
public class BotClientIRC : IBotClient
{
//
// BotClientIRC constructor
//
public BotClientIRC(Bot bot) :
base(bot)
{
info.hasAudio = false;
info.hasColors = true;
info.hasNewlines = false;
info.messageSafeMaxLen = 601;
info.shortMessages = true;
}
public override void connect() {}
public override void disconnect() {}
public override Channel getChannel(ulong id) => new Channel{};
public override void joinChannel(Channel channel) {}
public override void partChannel(Channel channel) {}
public override void sendAction(Channel channel, String msg) {}
public override void sendMessage(Channel channel, String msg) {}
}
}
// EOF