Bug.Utils.AnimatedTexture2D.AnimatedTexture2D C# (CSharp) Метод

AnimatedTexture2D() публичный Метод

public AnimatedTexture2D ( Microsoft.Xna.Framework.Graphics.Texture2D sheet_, int w_, int h_, int row_, int col_, int fps_ ) : Microsoft.Xna.Framework
sheet_ Microsoft.Xna.Framework.Graphics.Texture2D
w_ int
h_ int
row_ int
col_ int
fps_ int
Результат Microsoft.Xna.Framework
        public AnimatedTexture2D(Texture2D sheet_, int w_, int h_, int row_, int col_, int fps_)
        {
            sheet = sheet_;

            index = 0;
            Looped = false;
            w = w_;
            h = h_;
            row = row_;
            col = col_;
            elapsedTime = 0;

            fps = fps_;
            SetFPS(fps_);
        }