public EffectScreenshot(Fullscreen fs, FindWindows.Window window, int x, int y, int width, int height) { _fs = fs; _window = window; _x = x; _y = y; _width = width; _height = height; }
public EffectTransparentScreenshot(Fullscreen fs, FindWindows.Window window, int x, int y, int width, int height, EffectBackground background) { _fs = fs; _window = window; _x = x; _y = y; _width = width; _height = height; _effectBackground = background; }
public EffectScreenshot(Fullscreen fs, FindWindows.Window window, int x, int y, int width, int height, EffectBackground background) : this(fs, window, x, y, width, height) { _effectBackground = background; }