fix: clean gitignore for Godot C#

This commit is contained in:
maxwes08
2026-04-17 12:38:11 +02:00
commit 3ac0b6b866
23 changed files with 841 additions and 0 deletions

7
Scripts/Util.cs Normal file
View File

@@ -0,0 +1,7 @@
public static class Util
{
public static double Lerp(double start, double end, double t)
{
return start * (1 - t) + end * t;
}
}