Пример #1
0
 public void FellowshipQuit(bool disband)
 {
     if (Fellowship != null)
     {
         Fellowship.QuitFellowship(this, disband);
     }
 }
Пример #2
0
        public void FellowshipQuit(bool disband)
        {
            if (Fellowship == null)
            {
                return;
            }

            Fellowship.QuitFellowship(this, disband);

            Fellowship = null;
        }
Пример #3
0
 public void FellowshipQuit(bool disband)
 {
     Fellowship.QuitFellowship(this, disband);
     Fellowship = null;
 }