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