123456789101112131415161718192021 |
- using System.Threading.Tasks;
- using MafiaTelegramBot.Controllers;
- using MafiaTelegramBot.Models;
- using MafiaTelegramBot.Resources;
- using Telegram.Bot.Types;
- using User = MafiaTelegramBot.DataBase.User;
- namespace MafiaTelegramBot.Game.GameRoles
- {
- public class DonRole : Role
- {
- protected override Roles RoleKey => Roles.Don;
-
- protected override async Task<Message> NightAction(User user)
- {
- var room = await RoomController.GetRoom(user.GetRoomKey());
- //TODO this is what user can do in night phase
- return await Bot.SendWithMarkdown2(user.ChatId, strings.unexpected_error);
- }
- }
- }
|