punish v6.8.18.0
This commit is contained in:
commit
cfb4dea47e
316 changed files with 554088 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue