10 lines
193 B
C#
10 lines
193 B
C#
using Sandbox;
|
|
|
|
namespace Sasalka;
|
|
|
|
public class InventoryItem : Component
|
|
{
|
|
[Property] public BaseItemDefinition Definition { get; set; }
|
|
[Property] public int Count { get; set; } = 1;
|
|
}
|