/
NLObP
/
AAEmu
Обзор
Документация
Войти
/
NLObP
/
AAEmu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
AAEmu.Game/Models/Game/Items/Backpack.cs
14 строк
260 B
Roger Barreto
Performance + Refactoring + Code Style (#709)
16 сен 2023, 10:50
Не верифицирован
16 сен 2023, 10:50
0d89a74
Код
Авторство
О чём код?
using AAEmu.Game.Models.Game.Items.Templates; namespace AAEmu.Game.Models.Game.Items; public class Backpack : Item { public Backpack() { } public Backpack(ulong id, ItemTemplate template, int count) : base(id, template, count) { } }