Last active
December 30, 2016 20:02
-
-
Save unity3dcollege/1d3b9b358d90efa636d881175bfab7c1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IHealth | |
{ | |
event System.Action<float> OnHPPctChanged; | |
event System.Action OnDied; | |
void TakeDamage(int amount); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment