InventoryDatabaseV2.GetSocket
Declaration#
public virtual GDTKSocket GetSocket(string id)Parameters#
| Name | Description |
|---|---|
| id | Id of value to get |
Description#
Get a Socket by id
Usage#
using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod() { var result = InventoryDatabaseV2.instance.GetSocket("id"); }
}