Skip to main content

GDTKStat.Matches

Declaration#

public virtual bool Matches(T other)

Parameters#

NameDescription
otherObject to check against

Description#

Check if this objects data matches that of another object

Usage#

Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(GDTKStat target, GDTKStat other)    {        bool result = target.Matches(other);    }
}