punish v6.8.18.0

This commit is contained in:
alydev 2025-10-09 07:47:19 +10:00
commit 060278c1b7
317 changed files with 554155 additions and 0 deletions

View file

@ -0,0 +1,23 @@
using System;
using System.Globalization;
using System.Numerics;
using System.Runtime.CompilerServices;
namespace Questionable.Controller.NavigationOverrides;
public sealed record AlternateLocation(Vector3 Point, bool RecalculateNavmesh)
{
public override string ToString()
{
IFormatProvider invariantCulture = CultureInfo.InvariantCulture;
DefaultInterpolatedStringHandler handler = new DefaultInterpolatedStringHandler(6, 4, invariantCulture);
handler.AppendFormatted("Point");
handler.AppendLiteral(": ");
handler.AppendFormatted(Point, "G");
handler.AppendLiteral(", ");
handler.AppendFormatted("RecalculateNavmesh");
handler.AppendLiteral(": ");
handler.AppendFormatted(RecalculateNavmesh);
return string.Create(invariantCulture, ref handler);
}
}