コード例 #1
0
 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));
 }
コード例 #2
0
 public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Foreground.Id block, int goal)
 {
     blocks.Set(new ForegroundBlock(block, goal));
 }
コード例 #3
0
 public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Foreground.Id block, string args)
 {
     blocks.Set(new ForegroundBlock(block, args));
 }
コード例 #4
0
 public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Background.Id block)
 {
     blocks.Set(new BackgroundBlock(block));
 }
コード例 #5
0
 public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Foreground.Id block, bool enabled)
 {
     blocks.Set(new ForegroundBlock(block, enabled));
 }
コード例 #6
0
 public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Foreground.Id block, Morph.Id morph)
 {
     blocks.Set(new ForegroundBlock(block, morph));
 }
コード例 #7
0
 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));
 }
コード例 #8
0
 public static void Set(this IBlockSettable <ForegroundBlock, BackgroundBlock> blocks, Foreground.Id block, string text, Morph.Id signColor)
 {
     blocks.Set(new ForegroundBlock(block, text, signColor));
 }