using Godot; public partial class HealthbarProgress : TextureProgressBar { public void UpdateBar(long amount) { Value = amount; } }