Sharpex2D.Rendering.Keyframe.Keyframe C# (CSharp) Méthode

Keyframe() public méthode

Initializes a new Keyframe class.
public Keyframe ( Rectangle displayRectangle, float duration ) : Sharpex2D.Math
displayRectangle Sharpex2D.Math.Rectangle The DisplayRectangle.
duration float The Duration.
Résultat Sharpex2D.Math
        public Keyframe(Rectangle displayRectangle, float duration)
        {
            DisplayRectangle = displayRectangle;
            Duration = duration;
        }
Keyframe