따라하면서 배우는 NGUI 유니티 2D 게임 프로그래밍

적 캐릭터 제작까지 진행된 소스코드

IDamageable.cs

using System;

public interface IDamageable
{
    void Damage(float damageTaken);
}