9 lines
298 B
C#
9 lines
298 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; }
|
|
}
|