public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Foreground.Id block, string text, string textColor, int wrapWidth) { blocks.Set(new ForegroundBlock(block, text, textColor, wrapWidth)); }
public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Foreground.Id block, int goal) { blocks.Set(new ForegroundBlock(block, goal)); }
public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Foreground.Id block, string args) { blocks.Set(new ForegroundBlock(block, args)); }
public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Background.Id block) { blocks.Set(new BackgroundBlock(block)); }
public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Foreground.Id block, bool enabled) { blocks.Set(new ForegroundBlock(block, enabled)); }
public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Foreground.Id block, Morph.Id morph) { blocks.Set(new ForegroundBlock(block, morph)); }
public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Foreground.Id block, uint portalId, uint portalTarget, Morph.Id portalRotation) { blocks.Set(new ForegroundBlock(block, portalId, portalTarget, portalRotation)); }
public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Foreground.Id block, string text, Morph.Id signColor) { blocks.Set(new ForegroundBlock(block, text, signColor)); }