예제 #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);
     }
 }