refactor party

This commit is contained in:
2026-08-12 13:31:11 +02:00
parent 81d7a213cd
commit 51da5c97eb
29 changed files with 274 additions and 67 deletions

View File

@@ -1,4 +1,4 @@
namespace yourareanaiceo;
namespace Game.Extensions;
public static class DoubleExtensions
{

View File

@@ -1,11 +1,11 @@
using Godot;
namespace yourareanaiceo;
namespace Game.Extensions;
public static class NodeExtensions
{
public static Game GetGame(this Node node)
public static Main GetMain(this Node node)
{
return node.GetTree().CurrentScene as Game;
return node.GetTree().CurrentScene as Main;
}
}