Example #1
0
        public ReplyHandler(Bot bot, BotData data)
        {
            _bot = bot;
            _data = data;

            _moreMessagesReservedLength = MoreMessages(_data.MaxMores).Length;
        }
Example #2
0
 public MessageHandler(Bot bot, ReplyHandler replyHandler, BotData data)
 {
     _bot = bot;
     _replyHandler = replyHandler;
     _data = data;
 }