13 lines
214 B
C#
13 lines
214 B
C#
using Godot;
|
|
|
|
namespace fgj26.Scripts.Common;
|
|
|
|
public partial class ProjectileParent : Node2D
|
|
{
|
|
public static ProjectileParent Instance;
|
|
|
|
public override void _Ready()
|
|
{
|
|
Instance = this;
|
|
}
|
|
} |