Files
bluflame/intromat/Intromat/Nodes/Code/FloatLiteralValue.cs
2026-04-18 22:31:51 +02:00

9 lines
232 B
C#

using System.Globalization;
namespace Intromat.Nodes.Code
{
public class FloatLiteralValue : LiteralValueBase<float>
{
public override string? PreviewValue => Value.ToString(CultureInfo.InvariantCulture);
}
}