Skip to main content

GDTKCraftingResult.Matches

Declaration#

public virtual bool Matches(T source)

Parameters#

NameDescription
sourceCopy to compare

Description#

Compare object to another copy

Usage#

Example
using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
    public void Example(GDTKCraftingResult target, GDTKCraftingResult other)    {        bool result = target.Matches(other);    }

}