21 lines
540 B
C#
21 lines
540 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Cal.DataTable
|
|||
|
{
|
|||
|
public partial class MapMonsterConfigCategory
|
|||
|
{
|
|||
|
public long GetManulEquipId(int layer)
|
|||
|
{
|
|||
|
return layer switch
|
|||
|
{
|
|||
|
1 => MapMonsterConfigId.ManulEquip1,
|
|||
|
2 => MapMonsterConfigId.ManulEquip2,
|
|||
|
3 => MapMonsterConfigId.ManulEquip3,
|
|||
|
4 => MapMonsterConfigId.ManulEquip4,
|
|||
|
_ => throw new NotImplementedException(),
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
}
|