示例#1
0
 public void AllianceFlagWasDropped()
 {
     if (BattlegroundProfile.GetType() == typeof(WarsongGulchProfile))
     {
         ((WarsongGulchProfile)BattlegroundProfile).AllianceFlagWasDropped();
     }
 }
示例#2
0
 public void AllianceFlagWasPickedUp(string playername)
 {
     if (BattlegroundProfile.GetType() == typeof(WarsongGulchProfile))
     {
         ((WarsongGulchProfile)BattlegroundProfile).AllianceFlagWasPickedUp(playername);
     }
 }
示例#3
0
 public void HordeFlagWasDropped(string playername)
 {
     if (BattlegroundProfile.GetType() == typeof(WarsongGulchProfile))
     {
         ((WarsongGulchProfile)BattlegroundProfile).HordeFlagWasDropped(playername);
     }
 }