connections

This commit is contained in:
2026-05-20 16:34:39 +02:00
parent 70bba45b8a
commit 661e62e8b8
35 changed files with 1039 additions and 258 deletions

View File

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