25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

20 satır
468 B

  1. using System;
  2. using CIGEnums;
  3. using SUISS.Core;
  4. public class CityAdvisorBalloon : Balloon
  5. {
  6. public CityAdvisorBalloon() : base(GridTileIconType.WalkerBalloon, SpeechBaloonType.CityAdvisor)
  7. {
  8. }
  9. public override void Collect()
  10. {
  11. base.Collect();
  12. SingletonMonobehaviour<CIGCityAdvisor>.Instance.Show();
  13. this.ShownAdvice = SingletonMonobehaviour<CIGCityAdvisor>.Instance.AdviceType;
  14. }
  15. public AdviceType ShownAdvice { get; private set; }
  16. }