10 lines
358 B
C#
10 lines
358 B
C#
namespace Sasalka;
|
|
|
|
[GameResource( "Clothing Item Definition", "clitem", "", Category = "Sasalka", Icon = "inventory_2" )]
|
|
public class ClothingItemDefinition : BaseItemDefinition, IEquipable
|
|
{
|
|
[Property] public string ClothUrl { get; set; }
|
|
public Inventar.InventorySlot Slot { get; set; }
|
|
public override Inventar.InventorySlot? GetSlot() => Slot;
|
|
}
|