Zeplin.DrawCommand.DrawCommand C# (CSharp) Method

DrawCommand() public method

public DrawCommand ( Microsoft.Xna.Framework.Graphics.Texture2D source, Transformation transformation ) : System
source Microsoft.Xna.Framework.Graphics.Texture2D
transformation Transformation
return System
        public DrawCommand(Texture2D source, Transformation transformation)
        {
            this.source = source;
            this.transformation = transformation;
            this.destination = null;
        }

Same methods

DrawCommand::DrawCommand ( Microsoft.Xna.Framework.Graphics.Texture2D source, Transformation transformation, RenderTarget2D destination ) : System
DrawCommand