First builds and stuff done yipewaho

This commit is contained in:
2026-02-01 05:32:22 +02:00
parent 12c1360ae7
commit d910018b7b
62 changed files with 1886 additions and 37 deletions
+12
View File
@@ -0,0 +1,12 @@
using Godot;
public partial class DragArea : Area2D
{
public override void _InputEvent(Viewport viewport, InputEvent @event, int shapeIdx)
{
if (@event is InputEventMouseButton mb && mb.Pressed)
{
GD.Print("Area clicked");
}
}
}