namespace UnityEngine.XR.ARSubsystems
{
///
/// An interface for a reference image library. This is a set of reference images
/// to search for in the physical environment.
///
///
///
///
///
public interface IReferenceImageLibrary
{
///
/// Get the number of reference images in the library.
///
int count { get; }
///
/// Get the at the given .
///
/// The index.
XRReferenceImage this[int index] { get; }
}
}