WindowsGame1.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