L2Bot2.0/Client/Domain/DTO/UseSkillParams.cs
2024-08-12 22:06:01 +02:00

16 lines
292 B
C#

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;
}
}