StorageAreaPlugin.IsSlotFree
Declaration#
public bool IsSlotFree(Int32 column, Int32 row)Parameters#
| Name | Description |
|---|---|
| column | Column of the slot |
| row | Row of the slot |
Description#
Check if a slot is free
Usage#
using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void Example(StorageAreaPlugin target) { bool result = target.IsSlotFree(0, 2); }
}