Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Scripts / Interfaces / IHealthSystem.cs
@Rackday Rackday on 3 Sep 255 bytes Minor Update
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public interface IHealthSystem
{
    public void Heal(float ammount);
    public void TakeDamage(float ammount);

    public bool IsDead();
    public float CurrentHealth();
}