10 lines
150 B
C#
10 lines
150 B
C#
namespace NodeWar;
|
|
|
|
public static class Extensions
|
|
{
|
|
public static float ToFloat(this double value)
|
|
{
|
|
return (float)value;
|
|
}
|
|
}
|