Ejemplo n.º 1
0
        private string getAge(CivPopKerbal crew)
        {
            var res = formatter.format(currentDate - crew.GetBirthdate(), TimeFormat.AGE);

            if (crew.IsDead())
            {
                res = res + " - Dead";
            }
            return(res);
        }