BasicInfo.Matches
Declaration#
public bool Matches(BasicInfo source)Parameters#
| Name | Description |
|---|---|
| source | Object to compair to |
Description#
Check if data matches
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(BasicInfo info, BasicInfo info2) { bool result = info.Matches(info2); }
}