Click or drag to resize

DiamondOpTCellBeginGroup Method

Starts a compound shape operation. Any shape that is defined in terms of other shape operations must use this method, and use Endgroup() to end the definition.
public static DiamondShapeInfo<TCell> MyCustomShape(this DiamondOp<TCell> op)
{
    return 
        BeginGroup()
            .Shape1()
            .Union()
            .Shape2()
        .EndGroup(op);
}
Since version 1.1

Namespace:  Gamelogic.Grids
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
public DiamondOp<TCell> BeginGroup()

Return Value

Type: DiamondOpTCell
See Also