7 lines
189 B
C#
7 lines
189 B
C#
using UnityEngine;
|
|
|
|
public class ProgressBar : MonoBehaviour
|
|
{
|
|
[NaughtyAttributes.ProgressBar("Health", 100, NaughtyAttributes.ProgressBarColor.Orange)]
|
|
public float health = 50;
|
|
}
|