base vitality

This commit is contained in:
j.mei7
2022-02-19 16:48:48 +01:00
parent 97143a480f
commit 4d588c54ed
14 changed files with 587 additions and 565 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player : MonoBehaviour
{
public void Die()
{
Debug.Log("----- PLAYER DIED!!! -----");
}
}