robber-and-dobber/Assets/Scripts/WkurwHandler.cs
2021-08-28 14:33:27 +02:00

17 lines
333 B
C#

using NaughtyAttributes;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class WkurwHandler : MonoBehaviour
{
[MinValue(0), MaxValue(100)]
public int health = 100;
[MinValue(0), MaxValue(100)]
public int anger = 0;
[MinValue(0), MaxValue(100)]
public int fear = 0;
}