GDTKRace.Matches
Declaration#
public bool Matches(GDTKRace 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(GDTKRace target, GDTKRace other) { bool result = target.Matches(other); }
}