Example #1
0
        /// <summary>
        /// Returns the age of the person
        /// </summary>
        /// <returns></returns>
        public int Age(GameTime.GameTime currentGameTime)
        {
            if (DateOfDeath != null)
            {
                return((int)DateOfBirth.TimeElapsedInYearsSince(DateOfDeath));
            }

            return((int)DateOfBirth.TimeElapsedInYearsSince(currentGameTime));
        }