server-master/srcs/WingsAPI.Game/Skills/IBattleEntitySkill.cs
2026-02-10 18:21:30 +01:00

11 lines
No EOL
205 B
C#

using System;
using WingsEmu.DTOs.Skills;
namespace WingsEmu.Game.Skills;
public interface IBattleEntitySkill
{
SkillDTO Skill { get; }
DateTime LastUse { get; set; }
short Rate { get; }
}