mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-19 19:06:45 -05:00
a3208e26f2
Initial Character Panel Work
26 lines
514 B
C#
26 lines
514 B
C#
using OpenDiablo2.Common.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenDiablo2.Common.Models
|
|
{
|
|
public sealed class Armor : Item
|
|
{
|
|
|
|
}
|
|
|
|
public static class ArmorHelper
|
|
{
|
|
public static Armor ToArmor(this string[] row)
|
|
=> new Armor
|
|
{
|
|
Name = row[0],
|
|
Code = row[17],
|
|
InvFile = row[33]
|
|
};
|
|
}
|
|
}
|