using Godot; using System.Collections; using System.Collections.Generic; using Godot.Collections; namespace Rokojori { [Tool] [GlobalClass, Icon("res://addons/rokojori_action_library/Icons/CCJump.svg")] public partial class HeightDuration:Resource { [Export] public float height = 1; [Export] public float duration = 0.5f; } }