Sharpex2D.Rendering.Keyframe.Keyframe C# (CSharp) 메소드

Keyframe() 공개 메소드

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