예제 #1
0
파일: Buff.cs 프로젝트: spock254/sza
    public bool IsBuffed()
    {
        Type  type = Type.GetType(buffType.ToString());
        IBuff buff = (IBuff)Activator.CreateInstance(type);

        return(buff.IsBuffed());
    }