// idea is to have ai translate in between GDscript and c#, so i can still write in c# and chatgpt or deepseek will automatically convert it to gdscript
// using this for the browser version of the godot editor, since it doesnt have support for .net, maybe ill use it for mobile godot editor too.
using Godot;
using System;
public partial class NewScript : Node
{
public override void _Ready()
}
public override void _Process(double delta)
// dont use this, just here to keep dotnet happy, otherwise compiler is gonna complain about a missing Main method.
public class Program
{public static void Main(){}}