コード例 #1
0
ファイル: ReplyHandler.cs プロジェクト: Gohla/Veda
        public ReplyHandler(Bot bot, BotData data)
        {
            _bot = bot;
            _data = data;

            _moreMessagesReservedLength = MoreMessages(_data.MaxMores).Length;
        }
コード例 #2
0
ファイル: MessageHandler.cs プロジェクト: Gohla/Veda
 public MessageHandler(Bot bot, ReplyHandler replyHandler, BotData data)
 {
     _bot = bot;
     _replyHandler = replyHandler;
     _data = data;
 }