GDTKQuickSlot.Matches
Declaration#
public bool Matches(GDTKQuickSlot other)Parameters#
| Name | Description |
|---|---|
| other | Copy to compare |
Description#
Compare object to another copy
Usage#
Example
using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void Example(GDTKQuickSlot target, GDTKQuickSlot other) { bool result = target.Matches(other); }
}