ImageInfo.Matches
Declaration#
public bool Matches(ImageInfo source)Parameters#
| Name | Description |
|---|---|
| source | Object to compair to |
Description#
Checks of the data matches another ImageInfo
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(ImageInfo target, ImageInfo compareTo) { bool result = target.Matches(compareTo); }
}