robber-and-dobber/Assets/Scripts/WkurwHandler.cs
2021-08-28 13:59:39 +02:00

31 lines
545 B
C#

using NaughtyAttributes;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class WkurwHandler : MonoBehaviour
{
[ProgressBar("Health", 100, EColor.Red)]
public int health = 100;
[ProgressBar("Anger", 100, EColor.Yellow)]
public int anger = 50;
[ProgressBar("Fear", 100, EColor.Blue)]
public int fear = 35;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}