AddItemResult.countAdded
public Int32 countAdded { get; }Description#
Gets the number of the item that was successfully added
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(AddItemResult target) { System.Int32 result = target.countAdded; } }