(client) chore
This commit is contained in:
16
Client/Assets/Scripts/UI/BarUI.cs
Normal file
16
Client/Assets/Scripts/UI/BarUI.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
namespace UI
|
||||
{
|
||||
public class BarUI:MonoBehaviour
|
||||
{
|
||||
[SerializeField] private Image image;
|
||||
|
||||
public float Progress
|
||||
{
|
||||
get => image.fillAmount;
|
||||
set => image.fillAmount = value;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user