/// <summary>
 ///     Initializes a new instance of the <see cref="Animator2D" /> class.
 /// </summary>
 /// <param name="path">
 ///     The path of the animation
 /// </param>
 /// <param name="fpsLimiter">
 ///     Limits the maximum frames per seconds
 /// </param>
 public Animator2D(Path2D path, FPSLimiterKnownValues fpsLimiter)
     : this(new[] { path }, fpsLimiter)
 {
 }
 /// <summary>
 ///     Initializes a new instance of the <see cref="Animator2D" /> class.
 /// </summary>
 /// <param name="path">
 ///     The path of the animation
 /// </param>
 public Animator2D(Path2D path)
     : this(new[] { path })
 {
 }