server-master/srcs/_plugins/WingsEmu.Plugins.PacketHandling/Customization/BaseSkill.cs
2026-02-10 18:21:30 +01:00

20 lines
No EOL
432 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System.Collections.Generic;
using WingsEmu.DTOs.Skills;
namespace WingsEmu.Customization.NewCharCustomisation;
public class BaseSkill
{
public BaseSkill() => Skills = new List<CharacterSkillDTO>
{
new() { SkillVNum = 200 },
new() { SkillVNum = 201 },
new() { SkillVNum = 209 }
};
public List<CharacterSkillDTO> Skills { get; set; }
}