feat: add skills

This commit is contained in:
k0t9i
2023-02-01 00:30:20 +04:00
parent 823241ef32
commit 32fdef9b1c
13 changed files with 310 additions and 14 deletions

View File

@@ -36,6 +36,9 @@ namespace Client.Infrastructure.Factories
case MessageTypeEnum.Chat:
result = serviceProvider.GetService<ChatMessageHandler>();
break;
case MessageTypeEnum.Skill:
result = serviceProvider.GetService<SkillHandler>();
break;
}
if (result == null)