feat: add force skill using

This commit is contained in:
Иванов Иван
2024-08-12 22:06:01 +02:00
parent 75a5b842f7
commit b97a2ea63c
7 changed files with 51 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Client.Domain.DTO
{
public struct UseSkillParams
{
public uint skillId;
public bool isForced;
public bool isShiftPressed;
}
}