using NextMind.Examples.Steps; using UnityEngine; namespace NextMind.Examples.Calibration { /// /// Implementation of an managed by the . /// During this step, a welcome message is shown to the user. /// Nothing to override from , the default behaviour is enough. /// public class IntroStep : AbstractStep { /// /// Triggered when user clicks on an hypertext link. /// /// The link to open public void OnClickOnLink(string link) { Application.OpenURL(link); } } }