7-17-25 @ 3:55am

This commit is contained in:
2025-07-17 03:55:30 -04:00
parent c5795028f0
commit 3884c07811
23 changed files with 371 additions and 103 deletions

View File

@@ -4,5 +4,11 @@ using System;
public partial class Table : Sprite2D
{
public static Table _Create()
{
PackedScene scene = ResourceLoader.Load<PackedScene>("res://Gameplay/table.tscn");
Table newTable = scene.Instantiate<Table>();
return newTable;
}
}