Skip to content

Instantly share code, notes, and snippets.

@LordNed
Created May 6, 2015 18:41
Show Gist options
  • Save LordNed/04cadb5e42e608b859ff to your computer and use it in GitHub Desktop.
Save LordNed/04cadb5e42e608b859ff to your computer and use it in GitHub Desktop.
using UnityEngine;
public interface IDamageable
{
void OnTakeDamage(GameObject attacker, float damageAmount);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment