GDTKRecipe.Matches
#
Declarationpublic bool Matches(T source)
#
ParametersName | Description |
---|---|
source | Copy to compare |
#
DescriptionCompare object to another copy
#
UsageExample
using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void Example(GDTKRecipe target, GDTKRecipe other) { bool result = target.Matches(other); }
}