15 lines
257 B
C#
15 lines
257 B
C#
|
|
namespace Kryz.CharacterStats.Examples
|
|
{
|
|
public class EquipmentSlot : ItemSlot
|
|
{
|
|
public EquipmentType EquipmentType;
|
|
|
|
protected override void OnValidate()
|
|
{
|
|
base.OnValidate();
|
|
gameObject.name = EquipmentType.ToString() + " Slot";
|
|
}
|
|
}
|
|
}
|