예제 #1
0
파일: Choice.cs 프로젝트: 8bitbanana/MTGLib
        public override string ToString()
        {
            string s = type.GetString();

            if (source != null)
            {
                s += " -> " + MTG.Instance.objects[source].attr.name;
            }
            return(s);
        }