TapTitanXNA_AlfredoYabut.Animation.Animation C# (CSharp) Method

Animation() public method

public Animation ( Microsoft.Xna.Framework.Graphics.Texture2D texture, float frameTime, bool isLooping, int FrameCount ) : System
texture Microsoft.Xna.Framework.Graphics.Texture2D
frameTime float
isLooping bool
FrameCount int
return System
        public Animation(Texture2D texture, float frameTime, bool isLooping, int FrameCount)
        {
            this.texture = texture;
            this.frameTime = frameTime;
            this.isLooping = isLooping;
            this.FrameCount = FrameCount;
        }
Animation