Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the ExperiencesController class.
 /// </summary>
 /// <param name="experienceKeyCache">The experience key cache.</param>
 public ExperiencesController(IExperienceKeyCache experienceKeyCache, IAnimationKeyCache animationKeyCache, IAnchorKeyCache anchorKeyCache, AnchorsController anchorsController, RoutesController routesController)
 {
     this.experienceKeyCache = experienceKeyCache;
     this._routesController  = routesController;
     this.anchorKeyCache     = anchorKeyCache;
     this._anchorsController = anchorsController;
     this.animationKeyCache  = animationKeyCache;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AnimationsController"/> class.
 /// </summary>
 /// <param name="animationKeyCache">The animation key cache.</param>
 public AnimationsController(IAnimationKeyCache animationKeyCache)
 {
     this.animationKeyCache = animationKeyCache;
 }