Files
2026-video-game-project/Node2d.cs
2026-01-21 21:22:22 -05:00

16 lines
303 B
C#

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)
{
}
}