init commit

This commit is contained in:
2026-01-21 21:22:22 -05:00
commit 1b0f1c9080
10 changed files with 114 additions and 0 deletions

15
Node2d.cs Normal file
View File

@@ -0,0 +1,15 @@
using Godot;
using System;
public partial class Node2d : Node2D
{
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
}
// Called every frame. 'delta' is the elapsed time since the previous frame.
public override void _Process(double delta)
{
}
}