This commit is contained in:
2026-05-31 14:36:07 +02:00
parent b4ac00dcdd
commit 69c941b0e1
41 changed files with 39 additions and 324 deletions

9
Scripts/Extensions.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace NodeWar.scripts;
public static class Extensions
{
public static float ToFloat(this double value)
{
return (float)value;
}
}