Skip to content

Instantly share code, notes, and snippets.

@unity3dcollege
Last active December 30, 2016 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unity3dcollege/1d3b9b358d90efa636d881175bfab7c1 to your computer and use it in GitHub Desktop.
Save unity3dcollege/1d3b9b358d90efa636d881175bfab7c1 to your computer and use it in GitHub Desktop.
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