示例#1
0
        public void InformAboutRaid()
        {
            DelRaid handler = _Raid;

            if (handler != null)
            {
                handler();
            }
            else
            {
                WriteLine("Sorry, There are no any Raids!!");
            }
        }
示例#2
0
        public void GoToRaid()
        {
            DelRaid handler = _Raid;

            if (handler != null)
            {
                handler();
                GoToLocation("Raid");
            }
            else
            {
                WriteLine($"Easy {Name}, Bro!!! Calm down!! There are no any Raids!!!");
            }
        }