﻿using System.Collections;
using System.Collections.Generic;
using UnityEngine;


public class Unity : MonoBehaviour {
    private float health;

    // Use this for initialization
    void Start () {
		
	}
	
	// Update is called once per frame
	
        private void Update()
        {
            health -= 5 * Time.deltaTime;
        }


    
}
