BBKRPGSimulator.Graphics.DefaultGraphicsFactory.NewImageBuilder C# (CSharp) Method

NewImageBuilder() public method

public NewImageBuilder ( Array data, int width, int height ) : BBKRPGSimulator.Graphics.ImageBuilder
data Array
width int
height int
return BBKRPGSimulator.Graphics.ImageBuilder
        public ImageBuilder NewImageBuilder(byte[] data, int width, int height) => new InternalImageBuilder(data, width, height);

Same methods

DefaultGraphicsFactory::NewImageBuilder ( int width, int height ) : BBKRPGSimulator.Graphics.ImageBuilder
DefaultGraphicsFactory