15 lines
267 B
C#
15 lines
267 B
C#
|
using InnovEnergy.Lib.Utils;
|
|||
|
|
|||
|
namespace InnovEnergy.App.SaliMax;
|
|||
|
|
|||
|
public static class Switch
|
|||
|
{
|
|||
|
public static TextBlock Open(String name)
|
|||
|
{
|
|||
|
return TextBlock.AlignCenterHorizontal
|
|||
|
(
|
|||
|
" __╱ __ ",
|
|||
|
name
|
|||
|
);
|
|||
|
}
|
|||
|
}
|