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 @@
#pragma once
#include <memory>
#include "../Events/EventDispatcher.h"
#include "../Logger/Logger.h"
namespace L2Bot::Domain::DTO
{
struct UseSkillParams
{
uint32_t skillId;
bool isForced;
bool isShiftPressed;
};
}