|
@@ -1,9 +1,10 @@
|
|
using System.Collections.Generic;
|
|
using System.Collections.Generic;
|
|
using MafiaTelegramBot.Models.Commands;
|
|
using MafiaTelegramBot.Models.Commands;
|
|
using MafiaTelegramBot.Models.Queries;
|
|
using MafiaTelegramBot.Models.Queries;
|
|
|
|
+using MafiaTelegramBot.Resources;
|
|
using Telegram.Bot;
|
|
using Telegram.Bot;
|
|
|
|
|
|
-namespace MafiaTelegramBot
|
|
|
|
|
|
+namespace MafiaTelegramBot.Models
|
|
{
|
|
{
|
|
public static class Bot
|
|
public static class Bot
|
|
{
|
|
{
|
|
@@ -33,7 +34,10 @@ namespace MafiaTelegramBot
|
|
//TODO fill commands array
|
|
//TODO fill commands array
|
|
_commandsList = new List<Command>
|
|
_commandsList = new List<Command>
|
|
{
|
|
{
|
|
- new SendKeyboard()
|
|
|
|
|
|
+ new StartCommand(),
|
|
|
|
+ new CreateGameCommand(),
|
|
|
|
+ new ConnectGameCommand(),
|
|
|
|
+ new ShowProfileCommand()
|
|
};
|
|
};
|
|
}
|
|
}
|
|
|
|
|