GDTKFocus.Matches
Declaration#
public virtual bool Matches(T other)Parameters#
| Name | Description |
|---|---|
| other | Copy to compare |
Description#
Compare object to another copy
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void Example(GDTKFocus target, GDTKFocus other) { bool result = target.Matches(other); }
}