SadConsole.Consoles.AnimatedTextSurface.AnimatedTextSurface C# (CSharp) Method

AnimatedTextSurface() public method

Creates a new animation with the specified name, width, and height.
public AnimatedTextSurface ( string name, int width, int height ) : System
name string The name of the animation.
width int The width of each frame this animation will have.
height int The height of each frame this animation will have.
return System
        public AnimatedTextSurface(string name, int width, int height)
            : this(name, width, height, Engine.DefaultFont)
        {
        }

Same methods

AnimatedTextSurface::AnimatedTextSurface ( string name, int width, int height, Font font ) : System