1
0
Fork 0
Bildschirmflausch-LD41/Assets/Scripts/HealthbarController.cs
2018-04-22 01:17:45 +02:00

19 lines
322 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class HealthbarController : MonoBehaviour {
[SerializeField]
private Player player;
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
}