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