public virtual void Dispose()
 {
     if (LeaderboardPortrait != null)
     {
         LeaderboardPortrait.Dispose();
     }
     if (PartyIcon != null)
     {
         PartyIcon.Dispose();
     }
     if (MvpAward != null)
     {
         MvpAward.Dispose();
     }
     MvpAwardDescription = null;
     if (HeroDescription != null)
     {
         HeroDescription.Franchise.Dispose();
     }
 }
示例#2
0
        public SetPartyIconOutgoingPacket(uint creatureId, PartyIcon partyIcon)
        {
            this.CreatureId = creatureId;

            this.PartyIcon = partyIcon;
        }