using Godot; using System.Collections; using System.Collections.Generic; using Godot.Collections; namespace Rokojori { [GlobalClass,Tool] public partial class Hitter:Node3D { [Export] public Action onHit; public Hitable hitable; } }