This commit is contained in:
2026-05-13 18:52:00 +02:00
commit 2bb1acbece
404 changed files with 33353 additions and 0 deletions

9
scripts/Extensions.cs Normal file
View File

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