Files
GameJam2023/Enemies/HealthbarProgress.cs
2023-09-10 12:18:02 -07:00

10 lines
151 B
C#

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