예제 #1
0
파일: ReplyHandler.cs 프로젝트: Gohla/Veda
        public ReplyHandler(Bot bot, BotData data)
        {
            _bot = bot;
            _data = data;

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