feat: more hp for base

This commit is contained in:
Krzysztof Rudnicki 2022-05-23 12:58:45 +02:00
parent 8085bbb2e7
commit 4b607e25f0

View File

@ -11,8 +11,8 @@ public class Base : MonoBehaviour
Enemy
}
[SerializeField] private SoldierType ourType;
[SerializeField] private float maxHealthPoints = 10;
[SerializeField] private float healthPoints = 1;
[SerializeField] private float maxHealthPoints = 100;
[SerializeField] private float healthPoints = 100;
[SerializeField] private TMP_Text nameText = null;
[SerializeField] private TMP_Text healthPointsText = null;