Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Scripts / Player / Interfaces / IHealthSystem.cs
@Rackday Rackday on 24 Aug 252 bytes Minor Changes
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 GetHealth();
}