You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 line
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. }