Skip to main content

GDTKConditionalBool.Matches

Declaration#

public bool Matches(GDTKConditionalBool other)

Parameters#

NameDescription
otherCopy to compare

Description#

Compare object to another copy

Usage#

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

}