/
NLObP
/
AAEmu
Обзор
Документация
Войти
/
NLObP
/
AAEmu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
AAEmu.Game/Models/Game/Skills/SkillModifier.cs
17 строк
554 B
Roger Barreto
Performance + Refactoring + Code Style (#709)
16 сен 2023, 10:50
Не верифицирован
16 сен 2023, 10:50
0d89a74
Код
Авторство
О чём код?
using AAEmu.Game.Models.Game.Skills.Static; using AAEmu.Game.Models.Game.Units; namespace AAEmu.Game.Models.Game.Skills; public class SkillModifier { public uint Id { get; set; } public uint OwnerId { get; set; } public string OwnerType { get; set; } // unused - always "Buff" public uint TagId { get; set; } public SkillAttribute SkillAttribute { get; set; } public UnitModifierType UnitModifierType { get; set; } public int Value { get; set; } public uint SkillId { get; set; } public bool Synergy { get; set; } }