using UnityEngine; namespace OmiLAXR { /// /// Agents or Groups can also be included in the ‘context’ of a statement as an ‘instructor,’ leading to statements of the form “Brian (actor) learned xAPI from Ben (instructor).” /// [AddComponentMenu("OmiLAXR / Actors / Instructor")] public class Instructor : PipelineComponent { public string instructorName = "Instructor"; public string instructorEmail = "instructor@omilaxr.dev"; } }