/
NLObP
/
AAEmu
Обзор
Документация
Войти
/
NLObP
/
AAEmu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
AAEmu.Game/Models/Game/Slaves/SlaveModelAttachPoint.cs
16 строк
566 B
ZeromusXYZ
[Game] Feature/tradepacks and slaves part 3 (#776)
08 ноя 2023, 16:25
Не верифицирован
08 ноя 2023, 16:25
c0187a5
Код
Авторство
О чём код?
using System.Collections.Generic; using AAEmu.Game.Models.Game.DoodadObj.Static; using AAEmu.Game.Models.Game.World.Transform; namespace AAEmu.Game.Models.Game.Slaves; // ReSharper disable once ClassNeverInstantiated.Global /// <summary> /// Helper class for loading attachment points for slaves from json file /// </summary> public class SlaveModelAttachPoint { public string Name { get; set; } // Not actually used in the server public uint ModelId { get; set; } public Dictionary<AttachPointKind, WorldSpawnPosition> AttachPoints { get; set; } }