public void Blit(Rectangle source, ConsoleWindow dest, int xDst, int yDst, float foregroundAlpha, float backgroundAlpha) { TCOD_console_blit(Handle, source.X, source.Y, source.Height, source.Width, dest.Handle, xDst, yDst, foregroundAlpha, backgroundAlpha); }
public void Blit(Rectangle source, ConsoleWindow dest, int xDst, int yDst) { Blit(source, dest, xDst, yDst, 1.0f, 1.0f); }