using Godot; using System; public partial class Table : Sprite2D { public static Table _Create() { PackedScene scene = ResourceLoader.Load("res://Gameplay/table.tscn"); Table newTable = scene.Instantiate(); return newTable; } }