예제 #1
0
 /// <summary>
 /// Player followed the element id with indications
 /// Type = Place
 /// </summary>
 /// <param name="id">Element identifier.</param>
 /// <param name="guide">Array of indications the user is following.</param>
 public TrackerEvent Followed(string id, string[] guide)
 {
     tracker.setGuide(guide);
     return(tracker.ActionTrace(Verb.Followed.ToString().ToLower(), Type.Direction.ToString().ToLower(), id));
 }
 /// <summary>
 /// Player followed the element id with indications
 /// Type = Place
 /// </summary>
 /// <param name="id">Element identifier.</param>
 /// <param name="guide">Array of indications the user is following.</param>
 public void Followed(string id, string[] guide)
 {
     tracker.setGuide(guide);
     tracker.ActionTrace(Verb.Followed.ToString().ToLower(), Type.Direction.ToString().ToLower(), id);
 }