Moved scripts to namespaces

This commit is contained in:
Фёдор Веселов 2024-09-29 15:06:51 +05:00
commit de2c6261b0
51 changed files with 128 additions and 29 deletions

View file

@ -1,5 +1,6 @@
using Godot;
using System;
namespace Newlon.Components.Plants.Behaviours;
public partial class PeashooterBehaviour : Node
{

View file

@ -1,5 +1,7 @@
using Godot;
namespace Newlon.Components.Plants.Behaviours;
public partial class PotatomineBehaviour : Node
{
[Export] private AnimationPlayer _player;

View file

@ -1,5 +1,6 @@
using Godot;
using System;
namespace Newlon.Components.Plants.Behaviours;
public partial class SpikeweedBehaviour : Node
{

View file

@ -1,5 +1,6 @@
using Godot;
using System;
namespace Newlon.Components.Plants.Behaviours;
public partial class SunflowerBehaviour : Node
{

View file

@ -1,5 +1,6 @@
using Godot;
using System;
namespace Newlon.Components.Plants.Behaviours;
public partial class WallnutBehaviour : Node
{